Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #27.9K
Ranked #4K
~890 People Reached
Favorite Forums
Favorite Tags

6 Posted Topics

Member Avatar for caterpillar

You're not substituting Me.classname.UserID as a variable. You're passing it in the code as a value itself.

Member Avatar for shlimeel
0
251
Member Avatar for gani
Member Avatar for hanifa

I really have never heard of that driver nor understand what you're trying to do. The question is though, why are you connecting to port 1279? Did you change the port number in the server network utility? If not, it should be 1433.

Member Avatar for adamsd5
0
177
Member Avatar for x067844

Not sure what you mean when you ask if you can store the column alias when you create the table. A column alias can be assigned when you perofrm a query on the table.

Member Avatar for x067844
0
148
Member Avatar for sarvesh jaiswar

Just to a while loop. declare @rowcount int, @counter int select @rowcount = (select count(*) from table_name) set @counter = 0 while @counter <= @rowcount begin select * from table_name where rowid = @counter set @counter = @counter + 1 end

Member Avatar for pty
0
104
Member Avatar for deepu123

You can't drop a user if they are currently logged in. Do an sp_who to find the SPID's the user is logged in with, and kill those spid's. Then drop the user.

Member Avatar for itsdavetime
0
131

The End.