Viewing 15 posts - 616 through 630 (of 1,536 total)
sp_msforeachdb will handle database names with a length of up to 128 characters, you can't create databases with longer names, so not sure what the issue is with the long...
December 18, 2008 at 6:59 am
Not this?
declare @report smalldatetime
select @report = getdate()
update dbo.[PS - daily Temp]
set [report Date] = @report
Where [Report Date] is null
December 17, 2008 at 1:15 pm
Just remember to add the ability for the account to lock pages in memory if you are using a beefy box.
December 17, 2008 at 12:59 pm
There's plenty of script on the site to check for blocking and to return the information on the blocking spid, for example http://www.sqlservercentral.com/scripts/Lock+and+Connection+Management/30800/%5B/url%5D (you might want to remove the kill...
December 17, 2008 at 10:03 am
Are you able to open SSMS on the actual servers themselves and attempt to execute the xp_cmdshell or are you strictly limited to attempting it from your admin box?
December 17, 2008 at 9:56 am
Clustered servers?
December 17, 2008 at 9:36 am
Right, but the admin box connects to the remote servers for you to attempt running the xp_cmdshell, correct?
December 17, 2008 at 9:29 am
I agree with the C. There is no mention of a log backup ever being performed, therefore a restore using log backups does not fall within the scope of yes...
December 17, 2008 at 9:28 am
Given that you are connected to the server via SSMS there should be no firewall issues involved.
Does it show any further errors in the SQL log or the Windows Event...
December 17, 2008 at 9:25 am
Does the SQL service account have "Act as a part of the operating system" permissions from within start--> administrative tools-->local security policy -->local security settings --> user rights assignment
December 17, 2008 at 8:38 am
try sp_revokelogin or sp_denylogin to prevent members of a group or account from logging in.
December 17, 2008 at 8:16 am
Are you trying to pull information across the network via a mapped drive on a local server?
December 17, 2008 at 8:08 am
Do you have a limit as regards the downtime you can have associated with the database? ie could you shut down any and all things using the database and have...
December 17, 2008 at 7:33 am
Sorry, a little confused by what you are asking, but I'll try to answer this as best I can.
You are performing a full database backup, then restore this on another...
December 17, 2008 at 6:40 am
I would also recommend getting up to SQL 2000 SP4 at minimum. There is a memory leak bug in SP3 (fixed in SP3a).
Check out this Microsoft KB article as regards...
December 17, 2008 at 5:14 am
Viewing 15 posts - 616 through 630 (of 1,536 total)