Viewing 15 posts - 496 through 510 (of 1,366 total)
Chowdary's (8/17/2014)
Hi All,Can anyone explain the difference between Incremental Backup and Sequential Backup ...
Regards
Jagadeesh...
In SQL there is no such thing like Incremental Backup ,but have that in Oracle in which...
August 18, 2014 at 1:02 am
Thanks Gail,
Anyway we can get the changed or modified data from that file??
August 11, 2014 at 1:49 am
Can you post the code you used here?
August 7, 2014 at 2:42 am
Its set to master only.
July 31, 2014 at 1:58 am
Try this
SELECT o.[name] object_name, o.[type], i.[name] index_name, i.[index_id], f.[name]
FROM sys.indexes i
INNER JOIN sys.filegroups f
ON i.data_space_id = f.data_space_id
INNER JOIN sys.all_objects o
ON i.[object_id] = o.[object_id]
WHERE i.data_space_id = f.data_space_id
AND o.type = 'U' --...
July 16, 2014 at 7:56 am
if you take t logs other than LS its definitely going to break your log backup chain
July 16, 2014 at 7:43 am
Thanks Steve...I am really really sorry..what i wanted to type to CHECKDB??
How can i edit the heading of the post?
July 16, 2014 at 5:59 am
Shaun Finnegan (7/14/2014)
What is the recovery model of the dw?
Simple Recovery
July 15, 2014 at 12:59 am
We have requested infrastructure team for that..
Is there any other way to handle this.
Thanks Again Gail.. You are my Guru..
July 11, 2014 at 7:46 am
Only mdf and ldf files of that particular db exists in that drive.
July 11, 2014 at 4:32 am
Thanks a lot Gail.
S:\LOG\ABC_Log_508.ldf: Operating system error 112(There is not enough space on the disk.) encountered.
To allow recovery to succeed, the log file 'ABC_log5' has been expanded beyond its maximum...
July 11, 2014 at 3:38 am
Grant Fritchey (7/8/2014)
July 8, 2014 at 8:35 am
Thanks Grant for the reply.
Yes there exists foreign key between table Muthal and ConsumableType.
July 8, 2014 at 8:30 am
Thanks Sean,
The table name is put just for name sake and will be changed.
CreatedBy
ModifiedBy are referring to other tables where they are PKEY and data type GUID.
Do i...
July 8, 2014 at 8:10 am
Viewing 15 posts - 496 through 510 (of 1,366 total)