Viewing 15 posts - 106 through 120 (of 162 total)
How big is your database backup file size ? I have a 600 MB backup size running twice a day on a network share from last 3 years with no...
April 7, 2005 at 2:08 am
Hi,
As far as i know, it was not possible in sql 6.5 to get a object from a full backup file and the same continues in all versions of sql...
April 6, 2005 at 5:43 am
This article is excellent. I agree with wht Steve said.
Infact the life of a DBA is more hectic as he is dealing with data and data is the core of...
March 30, 2005 at 3:57 am
There are 4 types of transaction isolation levels. Here is the syntax :
SET TRANSACTION ISOLATION LEVEL
{ READ COMMITTED
| READ UNCOMMITTED
| REPEATABLE READ
| SERIALIZABLE
}
Once you set...
March 29, 2005 at 5:23 am
You could modify your SQL Backup Maintainence Plan to delete the file.
I mean if you are taking a backup at 10:00 am, you could ask the plan to delete the file...
March 29, 2005 at 5:04 am
The information provided by Scott is ultimate. I myself had my database running on a network drive for quite some time, and it affects performance and the risk of keeping...
March 29, 2005 at 4:59 am
Hidden shares should not make a difference. Try unhiding the share and taking a backup. If it works fine, then, unhide and take a backup.
I have my SQL Server backups...
March 27, 2005 at 10:39 pm
What is the recovery model you are using ? You might consider to change your recovery model to either Simple or Bulk-Logged if you do not really need Full Recovery...
March 23, 2005 at 4:52 am
Check to see if your transaction log is full and it has enough disk space to accomadate the changes.
--Kishore
March 22, 2005 at 12:19 am
What exactly are you looking at ? Are you trying to setup replication and log shipping on the same machines for the same databases ? Is so, why do you...
March 21, 2005 at 11:23 pm
You cannot have a write mode of a Secondary Server in Log Shipping. You can either have a read only mode or standby mode for Secondary server.
If you need to...
March 21, 2005 at 11:16 pm
What is your database size ? Is it a 24*7 application ? What is the frequency of the backups you are currently taking ? What time in the day is...
March 21, 2005 at 11:05 pm
You will get the maximum information in these 2 tables.
select * from sysdatabases
select * from sysaltfiles
--Kishore
March 20, 2005 at 10:46 pm
You may connect using QA and change the default database for the login using sp_defaultdb.
EXEC sp_defaultdb 'login', 'database'
--Kishore
March 17, 2005 at 2:36 am
Viewing 15 posts - 106 through 120 (of 162 total)