Viewing 15 posts - 7,696 through 7,710 (of 26,490 total)
Don't have time to help with the query itself, but I noticed you are using sys.sysprocesses. This is a SQL Server 2000 system table and is for backward compatibility....
May 9, 2013 at 9:49 am
One suggestion, you may want to try formatting your code to make it easier to read, and please use white space as it also helps with readability. When posting...
May 9, 2013 at 9:43 am
Eugene Elutin (5/9/2013)
Lynn Pettis (5/8/2013)
Eugene Elutin (5/8/2013)
You should use cursor datatype in output parameter of your procedure. Here you will find...
May 9, 2013 at 6:39 am
Eugene Elutin (5/8/2013)
You should use cursor datatype in output parameter of your procedure. Here you will find a sample:
http://msdn.microsoft.com/en-GB/library/ms175498(v=sql.105).aspx
Should, also mention...
May 8, 2013 at 7:40 pm
dwilliscp (5/8/2013)
I have found one other strange thing..
The outer join has data in the columns for details_2, so I do not understand how in the heck it is doing the...
May 8, 2013 at 11:50 am
And don't forget to post the expected results based on the sample data you provide. That will help with testing.
May 8, 2013 at 9:20 am
Kbear (5/7/2013)
Still would...
May 7, 2013 at 6:31 pm
Sean Lange (5/7/2013)
Kbear (5/7/2013)
ABC\genn.smith.itemresults
with this statement
ALTER SCHEMA dbo TRANSFER ABC\genn.smith.itemresults
and I get this error:
Incorrect syntax near...
May 7, 2013 at 3:25 pm
Script the table, change the schema to dbo, run the updated script, use a simple insert script to move any data from the old table to the new table, drop...
May 7, 2013 at 3:19 pm
Could you please post the error message you get when the job is already running and the SQL attempts to start it again? Please be sure to post the...
May 7, 2013 at 3:13 pm
cygne17_2 77208 (5/7/2013)
my user1 exist only in the msdb database.
I tried but it not working:
use master
go
GRANT SELECT ON sys.database_mirroring TO user1;
go
Msg 15151, Level 16, State 1, Line 2
Cannot find the...
May 7, 2013 at 1:32 pm
With nothing to do any testing with, give this a try:
WITH BaseData(
Class,
Date_Entered,
PMmiles,
RO,
...
May 7, 2013 at 1:18 pm
hany.helmy (5/5/2013)
Any explanation dear...
May 7, 2013 at 12:41 pm
cygne17_2 77208 (5/7/2013)
I want to grant select on sys.database_mirroring to a monitoring user.
When I did this:
use msdb
go
GRANT SELECT ON sys.database_mirroring TO user1;
go
I received this error:
Msg 4629, Level 16, State 10,...
May 7, 2013 at 12:18 pm
Viewing 15 posts - 7,696 through 7,710 (of 26,490 total)