defragmentation

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: How to format DateTime?

  • Reply

just get rid of the time part on the input and sample dates. Method1 casting as int Cast(@inputDate1 as int) Method2 remove time part @newinputdate = Cast(Convert(varchar(10),@inputDate, 101) as datetime) Method3 you could use acombination of DateDiff using 'd' as the difference HTH

You rated this post out of 5. Change rating

2003-11-13

1 reads

Blogs

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...

A New Word: Moledro

By

moledro – n. a feeling of resonant connection with an author or artist you’ll...

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