Viewing 15 posts - 31 through 45 (of 46 total)
Two way
SSMS
1) In Restore dialog use
To a point in time option to choose the time.
2) with Restore database t-sql use stopat parameter.
April 7, 2008 at 12:59 pm
Thank you all for the response.
I am going with differential backup for now. I have big implementation this weekend to migrate databases from one data center to another.
We are also...
March 16, 2008 at 6:44 pm
My SQL 2005 on SP1 but it fails on SQL 2005 as well. Except it works from Siebel. I am looking into Siebel. Thank you all.
February 29, 2008 at 3:42 pm
Something to this extent. I don't have the schema as I am investigating this issue from Siebel side where same query works connecting to SQL 2005 and failed SQL 2000....
February 28, 2008 at 8:30 am
Marvin, just to give that a thoughts once I do the full database backup and differential backup, differential backups are incrementing day by day so the last differential backup I...
February 13, 2008 at 12:39 pm
You can use the xp_sqlmaint for your backup with parameter
-DelBkUps 5DAYS
That will take care of your old backup files older than 5days.
January 4, 2008 at 7:52 am
One of the reason that you see the file size is big when you use BACKUP DATABASE command could be because your backup file under E:\ drive is append with...
January 4, 2008 at 7:47 am
Do you want the new server to be same name as the other one? Do you need all the login informaiton? you have to look at it what do oyu...
December 19, 2007 at 7:40 am
try using at command and osql at os level if you are on express. just thoughts
November 15, 2007 at 12:50 pm
Check which account do you use to run SQL server on both server and make sure has necessary permission. like connect.. etc.
November 15, 2007 at 12:45 pm
Found it but doesn't work all time. as long as its in cache.
DECLARE @Handle binary(20)
SELECT @Handle = sql_handle
FROM master.dbo.sysprocesses
WHERE spid = spid#
SELECT *
FROM ::fn_get_sql(@Handle)
November 15, 2007 at 12:42 pm
one more thing if you are using tempdb during this process, make sure your application data, log and tempdb are on seperate drives too. good luck.
November 1, 2007 at 6:11 pm
Jone, even though your database is in simple recovery mode, it uses transaction log while its building the your database.
Is the building jobs has more data than before? One...
November 1, 2007 at 6:12 am
Viewing 15 posts - 31 through 45 (of 46 total)