Viewing 15 posts - 46 through 60 (of 185 total)
The first option is reasonable, except WinZip doesn't work with the files of such size.
The second option is not clear, I don't see how stripped backup can help you with...
September 26, 2009 at 5:26 am
That is correct.
You may also run this script, which gives you more related info:
---------------------------------------------------------------------------------
--Database Backups for all databases For Previous Week
---------------------------------------------------------------------------------
SELECT
CONVERT(CHAR(100), SERVERPROPERTY('Servername'))...
September 25, 2009 at 10:57 am
You are welcome.
Just remember that code of SP doesn't care about physical location of SP, only a job does. So if you put the USE YourDB_name... statement in a code...
September 25, 2009 at 9:19 am
You can fix your problem with SP like that.
Just point your SP to the right database placing this code at the beginning of code in your SP:
USE YourDB_name
...
September 25, 2009 at 8:58 am
Hmm..
If you are looking for more simple way, I can see two:
1. Create this SP in a master database instead, so it will be always there regardless of your restores
2....
September 25, 2009 at 8:28 am
You may want to see some other options from the previous discussion:
http://www.sqlservercentral.com/Forums/Topic736321-146-1.aspx?Highlight=backup+table
September 25, 2009 at 7:44 am
I want to put my 2 cents since this discussion moved from "How to move files" to "How to copy/move database".
In this case we can also use a Copy Database...
September 25, 2009 at 7:19 am
You can install any other version of SS except EE on Windows XP.
September 24, 2009 at 5:35 pm
Look at here:
http://technet.microsoft.com/en-us/library/ms143506(SQL.90).aspx">Look at here:
http://technet.microsoft.com/en-us/library/ms143506(SQL.90).aspx
September 24, 2009 at 5:30 pm
Again, you simply cannot install SS Enterprise edition on Windows XP SP3 clearly, this cofiguration is not supported.
September 24, 2009 at 5:29 pm
Steve and Lynn,
Thank you for a good discussion.
September 24, 2009 at 1:32 pm
The UPDATE/DELETE/INSERT may not even be able to complete the respective action because it can't get the required locks due to the locks put on the rows/pages/extents/table as a result...
September 24, 2009 at 12:31 pm
I also think you missed the point, as Steve pointed out, only changes are logged. A simple, or complex, select statement for a report is only reading the database. Not...
September 24, 2009 at 12:21 pm
Steve Jones - Editor (9/24/2009)
September 24, 2009 at 12:11 pm
Lynn,
Curious, how does a SELECT statement fill a transaction log? I can understand UPDATE, DELETE, and INSERT; but SELECT?
If it is only one process running against this DB, it will...
September 24, 2009 at 12:02 pm
Viewing 15 posts - 46 through 60 (of 185 total)