Viewing 15 posts - 16 through 30 (of 41 total)
I find that detaching the database can help.
If you use EM you can warn the users connected to the DB and force them off.
Once detached, just delete the files for...
February 5, 2002 at 11:29 pm
It seems most became DBA's by accident more than choice.
February 5, 2002 at 11:18 pm
First be aware that nolock hint allows dirty reads. You can also hint an index e.g.
select * from tbl (nolock, index = IX_tbl_fld2)
This could help speed things up. If...
February 5, 2002 at 4:57 pm
Thanks for the reply.
I am going to take Steve's advice and write an article. There doesn't appear to be much independent performance information on partitioned views and since I...
February 5, 2002 at 4:52 pm
If you have an Active/Active cluster of SQL 2000 then you have 2 instances of SQL 2000 running on 2 hardware nodes.
Each Instance is like a separate SQL 2000 install....
February 4, 2002 at 11:08 pm
I started with a degree in Electrical Engineering. I originally wrote a database 15 years ago for the engineering firm I worked for.
Eventually I found myself doing a similar...
February 4, 2002 at 10:57 pm
It has always bugged me that the pop up menu on Enterprise Manager for the registered instance has the disconnect item next to the stop (stop MSSQLServer service) item.
I am...
February 4, 2002 at 10:46 pm
You can use one of 3 methods to attach a set of database files:
1. sp_attach_db (works with up to 16 files)
2. sp_attach_single_file_db (works for re-creating a single log file if...
February 3, 2002 at 9:58 pm
Thanks again. The link http://vyaskn.tripod.com/federated.htm was interesting.
I will post my findings shortly on the performance of partitioned view compared to original table.
As yet I haven't had a...
February 2, 2002 at 8:39 pm
I asked the question about partitioned views (not the distributed type on federated servers).
Thanks for the response. I am familiar with the benchmarking and the way Federated SQL servers...
February 1, 2002 at 9:40 pm
There is a bug introduced in SQL2000 SP1 described in KB article Q302892.
If you have an Operator in SQL Agent that uses more than one email account, any notification for...
January 22, 2002 at 11:28 pm
Under most circumstances I agree that an Identity column is a simple method for numbering rows.
On occasions where an insert is needed with the "Set Identity_Insert ON" function be aware...
January 21, 2002 at 4:03 pm
NOTE: If you are using Integrated Security then the windows logins are mapped in the Windows Registry on the local SQL server.
In this case you definitely have to prepare...
October 28, 2001 at 8:42 pm
I covered this issue with the Y2k compliance stuff.
SQL 6.5 required you to stop the services before changing the system time.
SQL7/2000 did not have a problem with changes to the...
October 26, 2001 at 12:52 am
Check the virtual memory settings in the OS.
The minimum pagefile should be RAM + 11MB.
Also check if you are getting blocks by running sp_who2 active. This will tell you...
October 26, 2001 at 12:47 am
Viewing 15 posts - 16 through 30 (of 41 total)