Viewing 15 posts - 1 through 15 (of 22 total)
Sorry tjm,
That was happened approx. 2 years back. I think we have resolved it but I couldn't remember how we have fixed it. No more I am working on that...
June 19, 2008 at 11:50 pm
Well, I believe differential database is also not allowed for 'Master' database.
April 13, 2007 at 3:00 am
Refer SQL Server Books online to know how to configure an automatic backup using SQL Server Agent. You can create an SQL backup job.
March 16, 2007 at 6:29 am
Hi,
REPLACE clause should be used if you want to overwrite the existing database or its related files thro' restore. With REPLACE clause, SQL Server does not conduct the saftey check...
March 16, 2007 at 4:28 am
hi..,
U can get the .mdf and .ldf file names associated with the particular database by executing the following query on each database,
select * from [DatabaseName].dbo.sysfiles
or
select filename from [DatabaseName].dbo.sysfiles
regards
deena
September 9, 2006 at 3:01 am
hi,
Depending on the recovery model set to each database,
sql server allow full backups as well as log backups,
but for master and tempdb only full backup can be taken on master...
July 12, 2006 at 9:48 am
ya, it works fine,
I have restored the database prior to a transaction log which makes the problem, then how it would be the point-in-time recovery.
regards deena
July 1, 2006 at 5:37 am
ok, fine
Now I have been trying to restore a transaction log using only stopat not stopatmark, after restore
the respective database in EM shows a (loading)
I could not access that database,...
June 30, 2006 at 4:49 am
hi..
you can restore the db after executing the below T-SQL
using SQL QueryAnalyser.
ALTER DATABASE yourdb SET SINGLE_USER WITH ROLLBACK IMMEDIATE
close query analyser after executing the query.
now try to restore yourdb...
June 29, 2006 at 1:53 am
Query used for full backup restore is
osql -S (local) -U user_name -P password -o output_file_name -b -Q "RESTORE DATABASE database_name FROM VIRTUAL_DEVICE=device_name WITH BLOCKSIZE=65556, MAXTRANSFERSIZE=4194304, NORECOVERY, REPLACE, STATS=10"
Query used...
June 28, 2006 at 11:27 pm
My restore command were
osql -S (local) -U user_name -P password -o output_file_name -b -Q "RESTORE DATABASE database_name FROM VIRTUAL_DEVICE=device_name WITH BLOCKSIZE=65556, MAXTRANSFERSIZE=4194304, NORECOVERY, REPLACE, STATS=10"
I have a full and...
June 28, 2006 at 12:03 am
>> 1. From where you have taken the backup? same server?
same server having only one instance
>> 2. Was the backup taken by SQL Query Analyzer / Enterprise...
June 27, 2006 at 10:43 am
hi,
Where could i get a detailed explanation of stopat option with mark_name, if the posted replies or not sufficient, I could not find such an example in BOL
thanx in advance
deena
June 17, 2006 at 8:01 am
hi
I am using ODBC to connect the db with VC++
I have not tried SQL DMO. Do I able to list the servers without connecting to the server in local...
May 11, 2006 at 5:22 am
Viewing 15 posts - 1 through 15 (of 22 total)