Forum Replies Created

Viewing 15 posts - 16 through 30 (of 118 total)

  • RE: Adding new files and getting data to move to them

    You should have created a new filegroup and move some tables to it.

    By moving the clustered indexes to the new filegroup the tables will be moved.And for tables which dont...

  • RE: how many instance can sql server 2000 have????

    Yes... u r correct...

  • RE: FIND THE DATABASE USED

    I did'nt understand your question completely...

    But you can know what are the jobs which are using particular databases.

    Use msdb

    select * from sysjobsteps

    you have a column database_name in this table.

  • RE: Log Shipping

    Yes ...go with Log shipping.

    Specify the logbackup restoration latency for 2 hrs in the log shipping configuration.And also to use the database for reporting purposes keep it in standby/readonly mode...

  • RE: Possible to Restore One table?

    Restore the backup with a different database name on the same server or different server.Then use import wizard ,which will create the table as well as move the data to...

  • RE: DRIVE SPACE DURING BACKUPS

    The log backup files will be of varying sizes.If heavy DML operations is performed or any index rebuild happens the log backup files increases heavily and thus variation is there...

  • RE: Getting the data before begining of a Transaction

    In read committed isolation level(its the default) uncommitted transactions will not be returned.

    In read uncommitted(least isolation level) you can get the dirty reads,uncommitted data.

    Since you did'nt mention any isolation level...

  • RE: Log shipping error

    You configured it well.No issues.

    Log shipping has two options one is stand-by and the other is norecovery mode for the secondary database.

    When you select the first option,the database will be...

  • RE: Stored Proc Activity-Usage

    SQL Profiler is the one you can use.

  • RE: Server Unresponsive

    I began having problems where the server becomes un-responsive during the db maintenance plan that happens at 2 AM on Saturday.

    All the maintenance plans were scheduled at the same time(saturday...

  • RE: How to open a .Bak file created during SQL Db Backup?

    Backups are of three types.

    Full backup

    Differential backup

    Transactional log backup

    The thrid one has the .trn extension.

    Please refer Books Online for types of backups.I think you should go through it.

  • RE: How to open a .Bak file created during SQL Db Backup?

    Which files are required for restore when a DB gets corrupted (means .mdf, .ldf files or only .bak files)

    You will restore the .bak file which was taken recently.In addition to...

  • RE: get last added column on which table

    How can one add the column without knowing the table name.

    Anyway,you can query the syscolumns system table order by Created_date desc.Get the object_id from this and query the sysobjects table...

  • RE: How to open a .Bak file created during SQL Db Backup?

    1)What is the importance of .bak file?(i know it is formed during taking Backup of a DB)

    A database is to be preserved everyday.That is one of the main task of...

  • RE: How to open a .Bak file created during SQL Db Backup?

    Venu,

    .bak file cannot be opened.It is the file which can be restored in sql server as a database.

    how to read the info present in it?

    What info did u mean?

    Once you...

Viewing 15 posts - 16 through 30 (of 118 total)