Indexing

Technical Article

RE: SP Problem With VB6

  • Reply

You could have coded your SP as follows CREATE PROCEDURE usp_check_login   @username varchar(20),   @password varchar(20) AS   SET NOCOUNT ON   SELECT user_id,     user_active as login_active,     user_loginattempts as login_attempts,     user_type   FROM tbl_user   WHERE user_username = @username AND user_password = @password   RETURN @@ROWCOUNT GO That way you could use your RETURN_VALUE to determine whether or not your user […]

You rated this post out of 5. Change rating

2003-12-23

3 reads

Technical Article

RE: Do the certifications add value?

  • Reply

My personal "senior" moment with SQL Server is anything to do with replication. I have worked as an App DBA for years and I have only worked on one replication setup. I have much more experience with clusters. Someone asks me an off-the-cuff question on the types of replication I'll find the answer in BOL. […]

You rated this post out of 5. Change rating

2003-12-17

Technical Article

RE: Shrinking Tempdb

  • Reply

An easy way to 'shrink' the tempdb is to stop and restart the services when you are done with all your transactions. This will cause tempdb to be rebuilt based on the model database. -SQLBill

You rated this post out of 5. Change rating

2003-12-17

Blogs

Step Up Your Data Game: Learn Advanced SQL Techniques for Analysis

By

In the modern data-centric landscape, SQL stands out as the dominant tool. It's essential...

SQL Saturday Boston 2024 Slides

By

Thanks to everyone that came to my talks. Slides are below. Best Practices for...

Small Data SF 2024

By

I can’t remember how I heard about Small Data SF 2024, but it caught...

Read the latest Blogs

Forums

7 sept, scheduled book

By philip.scott

Comments posted to this topic are about the item 7 sept, scheduled book

7 sept, schedlued article

By philip.scott

Comments posted to this topic are about the item 7 sept, schedlued article

6 sept, published book

By philip.scott

Comments posted to this topic are about the item 6 sept, published book

Visit the forum

Question of the Day

Azure Data Lake Storage Gen 2

Azure Data Lake Storage Gen 2 is built on ...?

See possible answers