Viewing 15 posts - 151 through 165 (of 215 total)
Well, no. Sorry, I don't buy it. The Northwind database is tiny, and on tiny tables scans are often faster, and compile times significant in comparison to execution.
When...
September 25, 2003 at 7:01 am
I am using SQL2000.
In terms of the where clause, just do this and look at the query plans. The one with the OR gives a scan, the one without...
September 25, 2003 at 6:10 am
That's only on a LAN. On a LAN it's pretty straightforward, and you don't have to go through all that. If it's currently communicating with the SQL Server,...
August 29, 2003 at 6:13 am
By the way, I should note that W2K (probably XP) includes a network sniffer that's decent (limited to what comes in/out of that server, not a general sniffer). So...
August 28, 2003 at 5:36 am
That's a very good question. Applications send in the host name, e.g. DTS packages appear to always come from the system that authoried them, drives me nuts.
I was fascinated...
August 28, 2003 at 5:33 am
What is your definition of "remote access"? Are you just disabling RAS to an interior LAN, or are you planning to somehow prevent network access to the SQL Server...
August 28, 2003 at 5:24 am
Sounds promising. We had not noticed that. I take it that it's unconditional regardless of who has the transactions open. Will try it.
August 23, 2003 at 11:05 am
I use the Red-Gate compare program and periodically compare our numerous databases to see if they are the same.
No matter what tricks you use to try to remember, sometimes you...
August 14, 2003 at 6:02 am
I had the same problem in a procedure that created audit triggers, declare 8000, only works to 4000. I think the obviuos cause is that somewhere inside there is...
August 14, 2003 at 5:09 am
Never mind. I oversimplified, and once I noticed it's obvious. The view is actually
select IsNull(t1.a,t2.a) as a, etc.
so the where clause for the view isn't making it...
August 10, 2003 at 8:31 am
We use log shipping for some databases. We have three basic ways we do this whole process - transactional replication, the one described above, and log shipping.
We use transactional...
August 8, 2003 at 3:57 pm
Obviously your needs may vary, but here is our need and approach.
We want a copy that people can query without being impacted by updates, i.e. lock-free.
We need a copy to...
August 8, 2003 at 1:34 pm
Re Scripts: From my perspective yes, any thing related to the DB. I insist that the entire database structure be maintained in source safe in scripts to the point...
August 7, 2003 at 6:49 am
I was surprised to read you can't use controller cache on clusters. Write-back cache makes a huge difference in our database environment (as with anything yours may vary). ...
August 7, 2003 at 4:51 am
i should make two caveats.
The ranking table and selecting a range around it fails if you don't have at least (for TOP N) the N in each grouping, otherwise you...
August 6, 2003 at 3:40 pm
Viewing 15 posts - 151 through 165 (of 215 total)