Viewing 4 posts - 16 through 19 (of 19 total)
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]...
January 6, 2010 at 1:56 pm
I will repost after reading the article and complying with its best practice for posting.
Thanks.
January 5, 2010 at 2:47 pm
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?...
January 5, 2010 at 2:25 pm
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...
January 5, 2010 at 2:20 pm
Viewing 4 posts - 16 through 19 (of 19 total)