Viewing 15 posts - 2,431 through 2,445 (of 3,616 total)
The only reference that I could find was SQL Server 2000 High Availability Series Implementing Network Load Balancing
I always thought that clustering SQL servers was simply to provide resilience....
February 9, 2006 at 5:18 am
My first job involved an HP3000/42, 52 and model 70 mini-computer and the 300MB disk drives for that were about the size of a laundrette washing machine. I suspect...
February 9, 2006 at 1:22 am
Are you experiencing problems with the way you are doing things at present?
If not then I would take the view that if it isn't broke don't fix it.
I try and...
February 7, 2006 at 11:05 am
If your unique ID is your primary key or a unique index then SELECT XYZ FROM dbo.abc WHERE key='232' is going to be fast no matter how many records you...
February 7, 2006 at 1:33 am
No, there is no drive mapping involved. It is simply a case of writing to a local directory.
I have tried right-clicking on the scheduled job and adding my intended...
February 6, 2006 at 5:35 am
Jeff,
Have you seen the trick where you do a completely superfluous WHERE {ClusterIndex} BETWEEN {ClusterIndex}.MinValue AND {ClusterIndex}.MaxValue
In SQL2000 this can force the clustered index seek even though the clause does...
February 5, 2006 at 8:12 am
I don't have BOL in front of me but look for a procedure with a name like sp_resetstatus.
Once you have done that you should be able to DROP the database.
February 4, 2006 at 4:02 am
If you do WHERE {Function(field)} = {value} then you will probably do a TABLE SCAN because the value isn't an indexed value.
Probably won't matter in a small-ish database but in...
February 4, 2006 at 3:48 am
So am I correct in thinking that it is if a single transaction requires a growth in excessive of current free space limits plus one expansion?
February 3, 2006 at 6:47 am
That is (Company Removed) added to my SPAM filter and blocked internet sites!
February 3, 2006 at 1:48 am
SQL2000 also makes use of the INFORMATION_SCHEMA views. You can see the definitive list within the MASTER database.
Some of the system tables have changed in SQL2005 so I would...
February 2, 2006 at 7:11 am
bcp is one way. I use BCP to export the results from stored procedures.
You can use SQL Query Analyser .See The best kept secret about SQL Query Analyser....
February 1, 2006 at 3:56 pm
It depends what you mean by huge
I had a requirement to produce a search that had certain compulsory search terms and a number of optional ones.
What I did was have...
February 1, 2006 at 3:51 pm
I take it that these were not Windows Account users?
A login has an SID number which is unique to the box. SID 1 is the SA account.
If you recreated...
February 1, 2006 at 12:13 pm
Viewing 15 posts - 2,431 through 2,445 (of 3,616 total)