Viewing 15 posts - 346 through 360 (of 629 total)
History is not maintained once the execution plan is removed from the DMV they are not backed up anywhere. You can however make job that polls the data...
March 18, 2009 at 6:41 pm
I have had issues like that it turned out to be time difference; check out how long it takes to complete backup. If one of the times the backups...
March 18, 2009 at 6:26 pm
Make sure your file is saved in uni-code format before you do import; we had similar issues. After making sure the file is saved as unicode using Notepad+ or...
March 18, 2009 at 6:22 pm
How about using the batching jobs with SQLCMD Variables?
Check out .. http://msdn.microsoft.com/en-us/library/ms188714.aspx
Mohit.
March 18, 2009 at 6:12 pm
Hmm I have not have backups failed in that manner; if you right click on the maintenance job and check the history with details you should be able to see...
March 18, 2009 at 6:06 pm
People make sure your executing that against Principle database (aka database that is active).
Thanks.
Mohit.
March 18, 2009 at 4:45 pm
ahager (3/18/2009)
March 18, 2009 at 4:05 pm
March 18, 2009 at 4:03 pm
Erode P. Satheesh (3/18/2009)
I am using the below T-SQL Statment,
ALTER DATABASE Mirroring_DB1
SET Partner='TCP://INBGMSNDB01:5022'
Now I am chasing my IT team to add...
March 18, 2009 at 4:00 pm
Yes it can be...
look at http://www.simple-talk.com/sql/performance/sql-server-performance-crib-sheet/
To understant where there issue can be.
For this table please run
DBCC SHOWCONTIG('tablename') WITH ALL_INDEXES
and reply with the results here. Thanks.
March 18, 2009 at 3:56 pm
You don't have Trace permissions on SQL Server.
Ask your vendor to execute
USE MASTER
GO
GRANT ALTER TRACE LoginName
GO
March 18, 2009 at 1:29 am
Check your job to make sure it is not set to close with failure.
And the last step in the job is configure to return success/failure ..
On your second post it...
March 18, 2009 at 1:23 am
Ask your vendor to check default trace log; object drop/creation are logged in there.
And by default up to 5 old trace logs are left.... so there might be...
March 18, 2009 at 1:21 am
Viewing 15 posts - 346 through 360 (of 629 total)