Forum Replies Created

Viewing 4 posts - 16 through 19 (of 19 total)

  • RE: Newbie Question

    I understand. Let me try this again.

    This is the users table:

    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[users]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)

    drop table [dbo].[users]

    GO

    CREATE TABLE [dbo].[users] (

    [id]...

  • RE: Newbie Question

    I will repost after reading the article and complying with its best practice for posting.

    Thanks.

  • RE: updating 1,000 records takes 5-6 minutes I would like to decrease the time that takes

    This issue is done for now....

    what advice would you all have to not using cursors if you

    have sensitive data that needs to be checked to maintain its integrity?...

  • RE: Newbie Question

    I don't know what kind of query would do the comparison like I need it to, that is why I am using a cursor. I recently learned how much using...

Viewing 4 posts - 16 through 19 (of 19 total)