Viewing 15 posts - 4,471 through 4,485 (of 7,429 total)
Yes, select a valid point in time covered between the last Full backup and last TL backup will do exactly as you stated.
EM is a really nice and simple interface...
November 5, 2002 at 3:28 pm
Try change EXEC to sp_executeSQL, it will attempt to reuse the execution plan but that is the best you can hope for with a dynamically changing structure. Unless you do...
November 5, 2002 at 3:23 pm
Unfortunately, there is no finite answer and I have looked at a rough one under various loads.
November 5, 2002 at 3:03 pm
SHould work fine, can you post what you tried so we can point out maybe a reason why it failed.
November 5, 2002 at 3:00 pm
It does, but it varies based on condition of processes running and IO to the drive the fiel is saved to. I use the black box trace frequently when try...
November 5, 2002 at 2:58 pm
I had no issues moving on an unServicePacked server and I don't think you will, but I am pretty sure you will have to reinstall the SP to make sure...
November 5, 2002 at 2:54 pm
Just playing, how about something like this.
DECLARE @tblname VARCHAR(255)
set @tblname = 'putyourtablenamehere'
DECLARE @colxmlstr VARCHAR(8000)
SET @colxmlstr = 'SELECT ''<fields>
'
SELECT @colxmlstr = @colxmlstr + '<field name = "' + [name] + '...
November 5, 2002 at 2:52 pm
Same as any write to a HD would have. Just don't send to the same drive as your data or log files if possible. Also, it will print the information...
November 5, 2002 at 2:37 pm
Restores are all sequentially. You can build a script to run to do the restore and recover on the last restore but you will not be able to do better...
November 5, 2002 at 2:34 pm
You stated it is the time in seconds. I am thinking most likely seconds since midnight 1/1/1970 (GMT or not? as you will need to adjust to local time).
SQL Server
SELECT...
November 5, 2002 at 2:13 pm
Not sure but usually that is a sign of not enough memory. The cache hits should be over 90%. All this means is that it was able to find some...
November 5, 2002 at 2:09 pm
The Buffer Cache thing is a misreport, I forget if this SP with the OS or SQL but I believe it is a known issue.
CPU will always vary but when...
November 5, 2002 at 12:55 pm
2x18GB System & Application disks RAID 1 -- This would be fine
1x18GB Log -- No redundancy, so you lose it it is gone.
2x36GB Data disks RAID 0+1 -- You can't...
November 5, 2002 at 12:37 pm
quote:
There is a "most popular articles" under the Articles link (under resources).Steve Jones
http://www.sqlservercentral.com/columnists/sjones
Sorry missed taht...
November 5, 2002 at 12:02 pm
Yes cache buffer hit should be above 90% consitantly or you have a memory issue. Other than that, the rest sounds fine. SQL will take memory as it needs and...
November 4, 2002 at 8:06 pm
Viewing 15 posts - 4,471 through 4,485 (of 7,429 total)