Viewing 15 posts - 511 through 525 (of 1,161 total)
This query worked fine for me. Please confirm if you are connected to a SQL Server 2008 instance.
October 25, 2010 at 6:35 am
This is the query I use to get job information.
SELECT Convert(varchar(20),SERVERPROPERTY('ServerName')) AS ServerName,
j.name AS job_name,
CASE j.enabled WHEN 1 THEN 'Enabled' Else 'Disabled' END AS job_status,
CASE jh.run_status WHEN 0 THEN 'Error...
October 24, 2010 at 9:34 pm
Senthil,
You get this error when you try to restore Transaction Log\ Differential backups without restoring the FULL backup of the database. First you restore the FULL backpup WITH NORECOVERY and...
October 24, 2010 at 9:27 pm
Recreating the Maintenance Plan should always be the last option. Let us try all other options before getting to that conclusion 😉
October 24, 2010 at 4:00 am
To troubleshoot network related issues start with the below command (run it for some time from the app pointing to the DB server) and see if there are any "Request...
October 24, 2010 at 1:48 am
Add an output file to the job step. That will give more information about the job failure.
October 23, 2010 at 9:25 pm
It is not recommended to run Profiler trace on a Production instance. Instead run a server side trace using as appropriate. An example here[/url]
October 23, 2010 at 2:17 am
UPDATE STATISTICS is a logged operation. However it should not make the transaction log to a huge size unless the table itself is too huge
October 22, 2010 at 1:12 pm
and F8 to hide the Object Explorer window. I am not aware of any settings to change the size of a query window
October 22, 2010 at 12:47 pm
Check if the "Casing for built-in function names" option (under Tools --> Text Editor --> Transact-SQL --> IntelliSense) is what you need
October 22, 2010 at 9:34 am
ranganathan.arumugham (10/22/2010)
How can we solve the issue of Error: Access is denied while writing output using sqlcmd in xp_cmdshell.
Exact ERROR: Sqlcmd: Error: Error occurred while opening or operating on file...
October 22, 2010 at 8:11 am
These articles should help you to decide it.
October 21, 2010 at 11:07 pm
The below query will give you the list of jobs owned by the Service Account.
select a.name,b.name
from msdb..sysjobs a, master..syslogins b
where a.owner_sid=b.sid
and b.name='YourServiceAccountName'
October 21, 2010 at 10:56 pm
The linked server can be scripted to a new query by right clicking on the linked server. You may execute this script on the destination instance.
Hope I understood your question...
October 21, 2010 at 2:23 pm
Try using (local) or . (period) as the Server Name instead of LocalHost
October 21, 2010 at 2:14 pm
Viewing 15 posts - 511 through 525 (of 1,161 total)