Viewing 15 posts - 616 through 630 (of 860 total)
yogaanand.me (3/29/2010)
thanks..ya i tried ..its like old only
i need "last backup database details"
can please give query to retrieve the data
please help
Try this...
SELECT
DATABASE_NAME,[TYPE],BACKUP_FINISH_DATE,
(BACKUP_SIZE/1024/1024) SIZE_MB,PHYSICAL_DEVICE_NAME,
[USER_NAME]
FROM MSDB.DBO.BACKUPSET A JOIN MSDB.DBO.BACKUPMEDIAFAMILY B
ON(A.MEDIA_SET_ID=B.MEDIA_SET_ID)...
April 9, 2010 at 6:08 am
pawantanwar87 (4/9/2010)
April 9, 2010 at 5:26 am
pawantanwar87 (4/9/2010)
by mistake my database have been replaced by old backup of same data base.how to get back of my previous database
I agree with Brain.
Do you have all latest backups?(full,diff&logs)
April 9, 2010 at 4:08 am
pleasehelpme (12/21/2009)
how many DR types there are? could you name 3 of them?
Results from google
------:-)
March 30, 2010 at 4:34 am
ferdin448 (3/30/2010)
I uses this
declare @str varchar(500)
set @str='bcp dbo.EMTemp in E:\CSVConversion\EMTest1.csv -n -T -S info71\SQLEXPRESS'
print @str
exec master..xp_cmdshell @str
but Received this error
SQLState = 37000, NativeError = 4060
Error = [Microsoft][SQL Native...
March 30, 2010 at 2:59 am
Nchax Phoku (3/29/2010)
Backup and restore
No, The OP want just 20 tables.
March 29, 2010 at 11:03 pm
Result from google.
-----:-)
March 29, 2010 at 10:28 pm
sku370870 (3/29/2010)
The database stores the data used by 4 different departments in an organisation. One of the departments have...
March 29, 2010 at 4:25 am
craig 84462 (3/29/2010)
can anyone know how I edit,insert rows into the source tables in the Adventureworks database? I want to test for changed records thanks, is it security?
Question is not...
March 29, 2010 at 1:28 am
mauryakamal (3/26/2010)
what isthe main difference between the Mirroring and replication.
Is it Interview question ?
March 27, 2010 at 8:11 am
dba-vb (3/26/2010)
Hi,Can any one tell me what is the basic diff b/n index rebuild and reorganize how it will affect the sql performance.
thanks.
Go google/BOL 🙂
March 26, 2010 at 3:38 am
Nitin Gupta - SQL DBA (3/26/2010)
March 26, 2010 at 3:10 am
Viewing 15 posts - 616 through 630 (of 860 total)