Viewing 15 posts - 91 through 105 (of 134 total)
Yeah let me consider the points which you have informed. I will work on this challenging part and will let you know with update. Thanks for responses.
May 3, 2012 at 6:15 am
Thank you for your information and sorry for confusion. Yes, I do know we will encounter datatype issues while downgrading. What my question is what issues do we see when...
May 2, 2012 at 9:54 pm
Thank you so much. I actually need to mask the data. so i found this would be good option.
May 2, 2012 at 12:56 pm
ok..i was not aware where exactly to post..thanks for info
May 2, 2012 at 12:29 pm
--Finally This query worked out in deteming the tables with compression 🙂
SELECT
SCHEMA_NAME(sys.objects.schema_id) AS [SchemaName]
,OBJECT_NAME(sys.objects.object_id) AS [ObjectName]
,[rows]
,[data_compression_desc]
,[index_id] as [IndexID_on_Table]
FROM sys.partitions ...
April 12, 2012 at 1:07 pm
dp we have any query which view the list of all page or row compressions
April 12, 2012 at 9:35 am
Here is the thing..it got back my deleted data...
-- I am just trying to learn..not for my office purpose..just interested to do things and learn by myself.
--Restore Files if...
April 4, 2012 at 2:13 pm
Oh ya, so now how can I get the deleted data, can you provide any script for this plz. Thank you
April 4, 2012 at 12:11 pm
This is how I did and it worked out..
USE master
--Create tail-log backup.
BACKUP LOG TestDB2
TO DISK = 'd:\backups\TailLogTESTDB2.bak'
WITH NORECOVERY;
--FULL DB
RESTORE DATABASE TestDB2
FROM DISK =...
April 4, 2012 at 10:09 am
Thank you Linn and Gylla..excellent answers..it helps me.
April 4, 2012 at 7:30 am
The data has got deleted with in the time log as mentioned earlier (20 mins) interval. TX log has not backed up. So, how can we get back the deleted...
April 3, 2012 at 1:56 pm
My question is how can we get the lost data between that time (20mins) interval? Do we have any script for that?
April 3, 2012 at 1:18 pm
Ok..lets consider I do have mdf and recent ldf files before disaster then how can i get back the data of the time where I lost
April 3, 2012 at 12:20 pm
Viewing 15 posts - 91 through 105 (of 134 total)