Viewing 15 posts - 121 through 135 (of 1,158 total)
Can't be done directly from t-sql. You need to invoke the command line using xp_cmdshell. There are plenty of zip tools around which provide a CLI and give...
January 3, 2014 at 2:59 am
That's a good point. You will need to change the paths back to what they were or next time you restart the db will fail to come online.
January 3, 2014 at 12:25 am
ramana3327 (1/2/2014)
Please let me know how can we move the database files if the disk is full when the database is in use & if the database is larger database.Thanks.
Just...
January 2, 2014 at 9:15 am
You can't physically move files whilst the db is in use. You can set the db to offline then move the physical files and combine it with the method...
January 2, 2014 at 9:13 am
deep_kkumar (12/31/2013)
S_Kumar_S (12/31/2013)
I created a proc on main server which was schedule and it will delete...
January 2, 2014 at 8:30 am
muthyala_51 (12/31/2013)
Thanks for the info. I am talking about transactional replication. Recently I noticed one of our subscription in inactive state. So I just right clicked on that subscription in...
January 2, 2014 at 8:28 am
Here's a couple of articles for you to look into it.
http://bradmcgehee.com/2011/03/10/do-you-enable-lock-pages-in-memory/%5B/url%5D
https://www.simple-talk.com/sql/database-administration/great-sql-server-debates-lock-pages-in-memory/%5B/url%5D
In my case, the only reason this option wasn't enabled was based on a MS article at the time saying...
January 2, 2014 at 4:12 am
Jeffrey Williams 3188 (12/31/2013)
How often are you updating statistics?How often are you rebuilding your indexes?
Have you reviewed the 'slow' queries to see if they can be improved?
Just a few thoughts...
I...
December 31, 2013 at 2:33 pm
This may or may not be of help. We had a similar problem, on an older version of windows, and this was related to not enabling "background memory trimming"...
December 31, 2013 at 8:37 am
I've only just seen this post. Your solution is precisely what I was about to suggest. There is no other way to achieve it.
December 31, 2013 at 5:54 am
Its difficult to say. There is no magic option to speed up the shrink command.
You could see if you have any unused/unrequired indexes and tables first. Maybe create...
December 30, 2013 at 9:35 am
You need to capture the deadlock and provide the output to establish the source of the problem.
It's could be caused by the delete in this case but could...
December 30, 2013 at 9:32 am
Have you got a db upgrade script? You should be able to include this as an executable to upgrade the in-situ db.
If not you can use a third party...
December 30, 2013 at 9:28 am
If you mean bi-directional in the form of transactional replication, you should go down the route of peer to peer replication. I'd stay away from updatable subscriptions as that's...
December 30, 2013 at 5:00 am
That's a pretty vague statement. Have you read the Microsoft documentation? Is this snapshot/merge/transactional replication?
There are many customisable options, such as initialise from backup, which can effect the...
December 30, 2013 at 3:07 am
Viewing 15 posts - 121 through 135 (of 1,158 total)