Forum Replies Created

Viewing 15 posts - 226 through 240 (of 319 total)

  • RE: A database backup scenario

    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...

  • RE: A database backup scenario

    vyas (9/23/2008)


    Yes you can restore.

    what if the transaction log back up is taken after the 3rd differential bachup

  • RE: Caught in Wrong Job ....

    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...

  • RE: Caught in Wrong Job ....

    Anirban Paul (9/22/2008)


    Jeff Moden (9/22/2008)


    Ahmad Osama (9/22/2008)


    but question here is that if i didn't get any experience on SQL server in next 90 days ..... then how will i pitch...

  • RE: Caught in Wrong Job ....

    Jeff Moden (9/22/2008)


    Ahmad Osama (9/22/2008)


    but question here is that if i didn't get any experience on SQL server in next 90 days ..... then how will i pitch my self...

  • RE: Caught in Wrong Job ....

    Matt Miller (9/22/2008)


    For what it's worth - stable or no, happy or no, I wouldn't go around advertising who I work for. Especially if you don't have something else...

  • RE: Caught in Wrong Job ....

    Loner (9/22/2008)


    This is your first day and you start thinking to quit !!!!!!!! You did not catch in the wrong job, it seemed to me you caught in the...

  • RE: Database Free Space

    thank u all

  • RE: Database Free Space

    how can i get all databases aggregated in a single table ,....as sp_spaceused and dbcc showfilestats are database specific....

  • RE: Database Free Space

    Renuka (8/29/2008)


    Hi,

    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...

  • RE: Database Free Space

    MANU (8/28/2008)


    Ahmad,

    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...

  • RE: Database Free Space

    Renuka (8/28/2008)


    I am not sure if there is direct query or a command, but if you use DBCC SHOWFILESTATS it returns Total extents and the Used extents of the Database;...

  • RE: Database Free Space

    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...

  • RE: Database Free Space

    Thanks I do know that....but how can I get it thru qry analyzer i.e PL/sql

Viewing 15 posts - 226 through 240 (of 319 total)