Viewing 15 posts - 196 through 210 (of 273 total)
so ifeverything works fine then whats the problem?
December 11, 2007 at 8:23 am
After taking up the backup, I verify my backups using :
RESTORE VERIFYONLY FROM DISK ='C:\YourBackupfile.bak'
December 11, 2007 at 8:16 am
If you are looking for a method to run your BI packages you can do that in command prompt dtexec.exe utility
December 7, 2007 at 8:05 am
Try this:
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[YOUR_VIEW]') and OBJECTPROPERTY(id, N'IsView') = 1)
drop view [dbo].[Your_VIEW]
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Yout_Table]') and OBJECTPROPERTY(id, N'IsUserTable')...
December 5, 2007 at 2:52 pm
There would be little effect in performance but no one will be kicked off or users can still be logged on to the app with not much affect. Actual time...
December 5, 2007 at 2:46 pm
Does exec sp_change_users_login 'Report' return the users you are seeing orphaned
December 4, 2007 at 7:41 pm
There is no way u can recover single table. You do have to recover whole database using ur full backup then get the diff backup restore and from the recovered...
December 2, 2007 at 12:37 am
thanks for bringing up that. good tips
December 1, 2007 at 12:11 pm
One way will be to free some space on your drive where your files (.mdf or .ndf or .ldf)are which are taking up all the disk space.
When u have...
November 27, 2007 at 8:41 am
But that option might give u error if u have constraints set up on ur destination database.There is very high risk of breaking things there because if u r just...
November 16, 2007 at 7:54 am
It can't be done. Backup-restore is the option.
November 15, 2007 at 6:56 am
Can u use RESTORE FILELISTONLY FROM DISK = ' C:\ yourBackUpCopy.bak'
and give me the results of the query
November 8, 2007 at 1:42 pm
Thats a transaction log backup. Take up full backup of ur database and then restore that. Transaction backups r of no use anyways if u dont have full backup and...
November 8, 2007 at 7:54 am
Viewing 15 posts - 196 through 210 (of 273 total)