Viewing 15 posts - 5,371 through 5,385 (of 6,678 total)
When installing or patching SQL Server in a cluster, it is very important that there are no users logged into the passive node when the upgrade is performed.
If there is...
April 16, 2009 at 1:44 pm
Steve Jones - Editor (4/16/2009)
There are other compare tools, but there is no best one. Try one or two, pick the one that...
April 16, 2009 at 10:38 am
I am not aware of a native tool that can do the same things. You can build your own (sort of) using SMO with Powershell or other utilities.
I have...
April 16, 2009 at 9:29 am
My guess would be that either the schedule is not enabled, or the fact that you are using the network service account instead of a domain account or local system...
April 16, 2009 at 9:23 am
If you have the delete task execute before the backup - the files will be deleted and then the backup will run. If the backup then fails, you've lost...
April 15, 2009 at 8:31 pm
If you have the maintenance window to run it (with a full scan) every night, then there really is no harm in doing so. Most of the time, it's...
April 15, 2009 at 4:18 pm
To add to what Flo has shown you - if this is not going to be executed a lot, then the recompile option works well. But, if it is...
April 15, 2009 at 4:16 pm
Try adding the column list to the insert statement:
If object_id('tempdb..#mytemptable') Is Not Null
Drop Table #mytemptable;
CREATE TABLE #mytemptable
(
myserverrole VARCHAR(50) DEFAULT @@SERVERNAME
,mymembername VARCHAR(Max)
,mymembersid VARBINARY(Max)
,mycheckdatetime datetime default...
April 15, 2009 at 3:36 pm
ppcx (4/15/2009)
oh, but I could put a default value on that datetime column...
Yes - you can use a default, or computed column, or even add it to the select statement....
April 15, 2009 at 3:08 pm
Yes - executing something like that would fail due to the multiple result sets.
One of the things you can do is view the code used in those procedures and extract...
April 15, 2009 at 2:48 pm
Stamey (4/15/2009)
The shrinkfile worked, on both data and log files....
April 15, 2009 at 2:12 pm
After this, I'm not that surprised.
Don't I know it - I was also involved in that thread, that's why I don't think it will make a difference.
April 15, 2009 at 2:09 pm
You would use:
INSERT INTO {table}
EXECUTE {procedure}
It is documented in books online under the INSERT INTO topic. The caveat for this is that the procedure cannot return more than one...
April 15, 2009 at 2:05 pm
The sad thing is - I don't think it will make a difference at all. We'll see though...
April 15, 2009 at 2:05 pm
When you say it doesn't work - what does that mean?
When you state that it runs manually - but not scheduled, what does that mean?
And, I would recommend that you...
April 15, 2009 at 1:56 pm
Viewing 15 posts - 5,371 through 5,385 (of 6,678 total)