Viewing 15 posts - 16 through 30 (of 118 total)
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...
May 29, 2009 at 7:33 am
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.
May 28, 2009 at 1:34 pm
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...
May 28, 2009 at 7:39 am
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...
May 27, 2009 at 12:01 pm
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...
May 27, 2009 at 8:21 am
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...
May 4, 2009 at 4:50 am
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...
April 29, 2009 at 11:03 pm
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...
April 29, 2009 at 12:35 am
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.
April 28, 2009 at 12:48 am
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...
April 28, 2009 at 12:20 am
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...
April 27, 2009 at 11:22 pm
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...
April 27, 2009 at 11:17 pm
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...
April 27, 2009 at 10:37 pm
Viewing 15 posts - 16 through 30 (of 118 total)