Viewing 15 posts - 676 through 690 (of 2,897 total)
Is 3 hour data loss acceptable for the business ? I prefer log backups every 15 or 20 minutes.
I run a server side trace 24/7 on my production server...
August 14, 2013 at 8:21 am
I use SQL Agent job and CmdExec as mentioned for exactly the same purpose, along with the "forfiles" command:
[font="Courier New"]
forfiles /p "f:\tracefiles" /s /m *.trc /c "cmd /c del @path"...
August 8, 2013 at 1:24 pm
In answer to your original question: Display the tables in the "Object Explorer" window. Then select the tables you want (all or some), right click, "Script Table as Create", then...
August 6, 2013 at 8:41 am
I look at backup history to give me approximate database growth over time. Maybe you can adapt that to get what you need ? Backup size is usually...
July 31, 2013 at 7:45 am
You may have open transactions. run dbcc opentran
July 30, 2013 at 8:13 am
I have a server side trace running 24/7, so I dump the trace file(s) to a table, then query for a specific date range and sort by duration desc for...
July 29, 2013 at 9:49 am
GilaMonster (7/29/2013)
Oh, and don't run Management Studio on the server and run queries that return huge resultsets....
I was starting to troubleshoot a timeout error that an application is having. I...
July 29, 2013 at 9:41 am
Thanks. Sounds like I am misplacing the blame.
July 29, 2013 at 8:58 am
Thanks.
I was prompted to look at RAM as a solution after getting this error message when trying to run a stored procedure:
An error occurred while executing batch. Error message is:...
July 29, 2013 at 8:17 am
I haven't worked with replication in a while, but when I did, and wasn't sure about something critical, I created some test replication databases and tried things out there first....
July 27, 2013 at 9:09 am
I use microsoft utility FORFILES to delete old files and schedule it through SQL agent. I think the syntax varies depending on your version of Windows.
For me on Windows server...
July 25, 2013 at 10:23 am
Did you recently migrate from 2000 ? I recall some slowness issues after migrating. In our case I think they were related to joins with converted data types...
July 22, 2013 at 6:02 am
Perhaps there is a way to run Litespeed on Server'A' to restore the database to server'B' ??
I think Litespeed customer support might give you the best answer, since versions and...
July 18, 2013 at 10:03 am
Thanks for the replies. We will find a different box to use.
July 9, 2013 at 12:29 pm
I will put this directly before the restore:
ALTER DATABASE MyDatabase SET OFFLINE WITH ROLLBACK IMMEDIATE
That should be more reliable than the "kill @spid" loop currently in place.
Thanks
July 8, 2013 at 7:41 am
Viewing 15 posts - 676 through 690 (of 2,897 total)