Viewing 15 posts - 1,321 through 1,335 (of 1,363 total)
I think you are viewing this 28MB figure against sqlservr.exe under task manager. Is it?
Manu
May 29, 2008 at 5:51 pm
Please change
from
select @VHO_Name = LEFT(@@servername, 6)
to
select @VHO_Name = LEFT(@@servername, 15)
Manu
May 29, 2008 at 5:15 pm
Do you have access to source database? If yes, try running DBCC CHECKDB on source database and verify if that is fine or not.
Manu
May 29, 2008 at 1:56 pm
Why don't you specify the complete server name. half name is not allowing SQL Server to recognize the mentioned group.
Manu
May 29, 2008 at 11:31 am
Terry,
Did you tried this:-
1. Create a database with the same name in another directory as the one you're trying to attach.
2. Re-create all filegroups and files as necessary & then...
May 28, 2008 at 6:11 pm
This script will work for me. Thanks a lot Carl.
Manu Jaidka
May 28, 2008 at 5:50 pm
Can you try the same by creating only one index(Clustered Index) on these three columns and then start the data loading process?
Manu
May 28, 2008 at 3:57 pm
Do this table have any foreign key references or constraints refering it?
Manu
May 27, 2008 at 2:14 pm
You are right Chris as it won't delete any backups apart from SQL native ones.
Manu
May 27, 2008 at 9:23 am
If this is the first time you took backup to two files then use the code mentioned below:
Use msdb
select media_set_id from backupmediafamily
group by media_set_id
having count(media_set_id)>1
select Physical_device_name,* from backupmediafamily...
May 26, 2008 at 5:35 pm
I dont have answer to your first question. Please find attached doc describing encryption a bit. Yep, u r right that is known as key management and it has been...
May 26, 2008 at 5:01 pm
As per books online explanation about DBCC SHOWCONTIG heaps fragmentation is never reported. Also, heaps can never be defragged. Only one option is thr to defrag them:
Drop and recreate the...
May 26, 2008 at 4:38 pm
If you have time please go thru this nice document:--
http://www.sqlservercentral.com/articles/Installation/clustering_a_sql_server_machine_/344/
Clustering SQL Server 2000 from 500 Feet.
Although urs is 2005 but concept of Active and passive configuration is still the...
May 26, 2008 at 4:33 pm
I just meant that statistics are automatically created on columns used in a predicate. Adding statistics improves query performance because the SQL Server query optimizer can better determine how to...
May 26, 2008 at 4:21 pm
Viewing 15 posts - 1,321 through 1,335 (of 1,363 total)