Viewing 15 posts - 1,066 through 1,080 (of 1,165 total)
I am not sure, but is this correct: I ran a full backup at 2pm, t-log are backed up hourly. I have a "problem" at 6pm. In order to properly...
December 6, 2006 at 11:33 am
When you are creating maintenance plan it will ask you for database backup..."Specify the Database Bakcup Plan" tab is for full backup "Specify the Transaction Log Bakcup Plan" tab is...
December 6, 2006 at 11:26 am
If you are stopping the running job it reports as cancelled ("The step was cancelled (stopped) as the result of a stop job request. ") not success.
It is reporting as it...
December 6, 2006 at 11:19 am
Detach the existing database using EM or sp_detachdb procedure and rename .mdf and .ldf files with suffix _old...
Copy the new .mdf file which you get from your backup server to...
December 6, 2006 at 11:13 am
I don't know what is the reason you want to delete 7 days data from the app.. which can be done using sql job...
If I want to do it.. Here...
December 6, 2006 at 11:04 am
Don't forget to take full backup without any delay after major modifications to the db.
December 6, 2006 at 10:50 am
Maintenace plans are easy to created but in 2005 there are some issue to be addressed..
You can write a script for backup, reindexing and dbcc checkdb ect.... You can create...
December 6, 2006 at 10:46 am
May be your disk was formatted with compression enabled.
Check with your system admin..
Are you able to create a database using create db script?
December 6, 2006 at 10:41 am
I don't thin there any way to compare without decrypting...
But you can check some third party tools which compares object schema/data out in the market.
December 6, 2006 at 10:35 am
Either you need to remove the constraint on the destination table or change your source query to
'select *, 'value for not null column' from tablename
December 5, 2006 at 5:39 pm
If it is memory issue then it might be MemToLeave memory which 256 MB by default...
All extended procedure, com objects and linked server calls uses MemToLeave memory...
Only the option is...
December 5, 2006 at 5:11 pm
Try this..
dbcc checkprimaryfile (N'C:\Program Files\Microsoft SQL Server\MSSQL\Data\admin.mdf', 0)
go
dbcc checkprimaryfile (N'C:\Program Files\Microsoft SQL Server\MSSQL\Data\admin.mdf', 1)
go
dbcc checkprimaryfile (N'C:\Program Files\Microsoft SQL Server\MSSQL\Data\admin.mdf', 2)
go
dbcc checkprimaryfile (N'C:\Program Files\Microsoft SQL Server\MSSQL\Data\admin.mdf', 3)
go
December 5, 2006 at 4:55 pm
Way back I used the command to read the .mdf file details... I don't remember at this time but if I get it I will post it..
Meantime you can attach...
December 5, 2006 at 4:47 pm
If your service account has the access I belive you can use UNC name like '\\servername\c$\test.bak'
OR
Run the backup locally and copy the backup file or FTP it.
December 5, 2006 at 4:23 pm
December 5, 2006 at 4:13 pm
Viewing 15 posts - 1,066 through 1,080 (of 1,165 total)