Viewing 11 posts - 1 through 11 (of 11 total)
I've never faced this issue before. Please make sure that the integration services and the SQL Agent are using the same service account.
April 8, 2016 at 8:57 am
One can view the Trigger definitions by querying syscomments view.
You can sys.objects to get all the triggers.
April 7, 2016 at 1:27 pm
I didn't see backup compression mentioned before, assuming you're already using it.
March 31, 2016 at 4:36 pm
Use Backup file Striping with the methods described in the below blog. I could reduce to backup times from few hours to with in an hour for large databases.
March 31, 2016 at 4:34 pm
This link may be useful, perhaps the problem is already resolved.
http://msdn.microsoft.com/en-us/library/ms189580(v=sql.105).aspx
April 19, 2013 at 9:56 am
I don't know how the SQL Agent job is set-up. If it is using a Stored Procedure to backup all databases, you should look at the logic of that SP....
April 18, 2013 at 9:16 am
What the SQL Server agent job does? It could missing indexes if DELETE/UPDATE is being performed.
April 17, 2013 at 9:40 pm
You can use SYSTEM_USER function in SQL Server. Please refer to the below link.
April 17, 2013 at 9:27 pm
You might want to check available space on the index/data drive. Reindex (not rebuild) needs space as it is an online operation. You might want to check the log space...
April 17, 2013 at 9:16 pm
I have had checkpoint process running into hours after nightly restores of some reporting databases. We figured that the issue was related to disk performance and it had to be...
April 17, 2013 at 9:24 am
Open a new query in the database that you are interested in increasig the file-size and run the below query.
SELECT * FROM SYS.SYSFILES
Select the "Name" with groupid = 0
Run the...
February 8, 2012 at 3:14 pm
Viewing 11 posts - 1 through 11 (of 11 total)