Viewing 15 posts - 226 through 240 (of 319 total)
GilaMonster (9/23/2008)
Ahmad Osama (9/23/2008)
vyas (9/23/2008)
Yes you can restore.what if the transaction log back up is taken after the 3rd differential bachup
When was the previous log backup taken?
Or when was the...
September 23, 2008 at 2:30 am
vyas (9/23/2008)
Yes you can restore.
what if the transaction log back up is taken after the 3rd differential bachup
September 23, 2008 at 1:31 am
Jeff Moden (9/22/2008)
Ummm... disregard my last... it appears that you're only interested in clustering and log shipping.:)
not at all....tho i think that these are the core DBA fields and each...
September 22, 2008 at 11:22 pm
Anirban Paul (9/22/2008)
Jeff Moden (9/22/2008)
Ahmad Osama (9/22/2008)
September 22, 2008 at 11:07 pm
Jeff Moden (9/22/2008)
Ahmad Osama (9/22/2008)
September 22, 2008 at 10:34 pm
Matt Miller (9/22/2008)
September 22, 2008 at 9:39 pm
Loner (9/22/2008)
September 22, 2008 at 9:26 pm
how can i get all databases aggregated in a single table ,....as sp_spaceused and dbcc showfilestats are database specific....
August 31, 2008 at 12:14 pm
Renuka (8/29/2008)
In Taskpad view the size is shown in MBs. Ideally it should match with the results of DBCC SHOWFILESTATS.
@used_space=(CONVERT(dec(10,2),usedextents*64/1024))
@total_space=(CONVERT(dec(10,2),totalextents*64/1024))
The results are in MBs and should match with Taskpad...
August 29, 2008 at 11:27 am
MANU (8/28/2008)
Try this:
CREATE TABLE #db_file_information(
fileid integer
, theFileGroup integer
, Total_Extents integer
, Used_Extents integer
, db varchar(30)
, file_Path_name varchar(300) )
-- Get the size of the datafiles
insert into #db_file_information
( fileid...
August 28, 2008 at 10:10 pm
Renuka (8/28/2008)
August 28, 2008 at 5:30 am
Rajan John (8/28/2008)
sp_spaceused
Thanks...I used it to group all the database in a single table.
- I created a temp table to store the result set exec sp_msforeachtable...
August 28, 2008 at 4:24 am
Thanks I do know that....but how can I get it thru qry analyzer i.e PL/sql
August 28, 2008 at 3:24 am
Viewing 15 posts - 226 through 240 (of 319 total)