Viewing 15 posts - 16 through 30 (of 155 total)
another option would be to create a job to execute the package, but not schedule that job. Then you could build a command string (@sql) within the proc to...
February 6, 2009 at 10:47 am
I don't know of any out-of-the-box mechanism for what you seek, and if there is one built-in, then I really want to know about it, as well.
February 6, 2009 at 9:51 am
I may be leading in the wrong direction because I'm not understanding the "system" you are talking about, but if the "bu" file is like any other sql backupset, then...
February 6, 2009 at 9:48 am
Are you asking about restoring a chain of transaction log backups?
February 6, 2009 at 9:37 am
I would recommend as part of your final verification that you failover all instances to Node1 and check the @@version of all instances, failover all instances to Node2 and check...
February 6, 2009 at 7:38 am
I'm just curious, is this to alleviate the number of requests that a DBA has to handle for a lower environment like Development? Maybe I'm just missing something (which...
February 5, 2009 at 6:35 am
Only one quorum
February 4, 2009 at 2:05 pm
And be sure to execute the following, if adding the user to the master database roles was not your intention:
USE [master]
GO
EXEC sp_droprolemember N'db_datareader', N'N'S602561DC4EW31\GPWebUser'
GO
EXEC sp_droprolemember N'db_datawriter', N'N'S602561DC4EW31\GPWebUser'
GO
February 4, 2009 at 11:59 am
The D: drive can only belong to one cluster group. You need a new cluster group for a new instance, and that new cluster group must have its own...
February 4, 2009 at 11:55 am
Each instance must have its own group, with its own disk resources.
Having multiple instances in one cluster group, even if possible, would be a very bad idea, because if one...
February 4, 2009 at 11:51 am
Colin Lam (2/2/2009)
February 4, 2009 at 10:49 am
The tables are being used as part of a business process. The table needs a row for each of these steps that are part of a server build process....
June 20, 2008 at 6:08 am
Well, I have no idea if this is the best thing to do, but this seemed to accomplish what I wanted. This is probably the least efficient query ever...
June 19, 2008 at 11:24 am
Here is the proc I have so far, inserting only one row into the ServerStatus table, with the basic server information from Server_Master. How do I get this specific...
June 19, 2008 at 10:46 am
Have you reviewed the logs in the following (or similar) location?
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG
June 12, 2008 at 1:49 pm
Viewing 15 posts - 16 through 30 (of 155 total)