Viewing 15 posts - 121 through 135 (of 347 total)
there is a dropdown in the job step to specify database. verify that the database displayed there is the database that contains the procedure.
August 28, 2008 at 8:30 am
try thi in your job
execute dbo.processname @var1 = null, @var2 = null
August 28, 2008 at 8:06 am
can you post what you have in you job so I can see what you are currently passing through?
August 28, 2008 at 7:40 am
I think this is what you are asking for
execute sp_procedure @var1 = null,@var2 = null
August 27, 2008 at 3:20 pm
I have not found a way to reuse the disks. I suppose that they did that just to ensure all instances are independent of each other. We use mount points...
August 26, 2008 at 3:23 pm
BOL is books online (just the help documentation)
I had never heard of switch either.
August 26, 2008 at 3:10 pm
it depends on how you want it setup. Say you have a 3 node cluster and 2 nodes have active instances. if you are adding a 4th node, and you...
August 26, 2008 at 3:00 pm
you need to add any node that you wish to be able to fail that instance over to.
August 26, 2008 at 2:49 pm
you should be fine. SQL only counts the physical processors and not how many cores you have.
August 26, 2008 at 2:04 pm
we usually add the SQL service accounts to the local groups "distributed COM users" and SQLSERVER2005DTSUSER
if that doesn't get you there, I have one more thing you can try,...
August 26, 2008 at 11:20 am
try using the CASE/WHEN clause, it's well documented in BOL
August 25, 2008 at 1:39 pm
I would suggest adding an if exists clause to see if the table exists first. Just change the name of the object below.
IF EXISTS (SELECT * FROM sys.objects WHERE...
August 25, 2008 at 1:31 pm
BAK files zip quite nicely, or you could use a third party tool like litespeed from quest, I have had good luck with that one. I've also heard there is...
August 21, 2008 at 2:55 pm
what I found more useful than spotlight is thier product called performance analysis.
August 21, 2008 at 2:51 pm
Viewing 15 posts - 121 through 135 (of 347 total)