Viewing 15 posts - 5,671 through 5,685 (of 6,105 total)
Are you looking for test simulation software or are you looking for an actual platform in which to play with queries and the like? I'm assuming the former. ...
February 7, 2002 at 12:18 pm
EM can be used to create database tables and it works well enough. However, there are other products out on the table that do a lot more.
This goes back...
February 7, 2002 at 12:09 pm
drowssap is pretty easy, too.
K. Brian Kelley
February 7, 2002 at 12:06 pm
quote:
I also helped architect an inhouse data center as opposed to colo or managed. Went from $6k/month costs to < $3k (US).
February 7, 2002 at 12:05 pm
From the newest SQL Server Magazine UPDATE newsletter:
quote:
A final note: Oops! Last week's worst-practices commentary contained aone-word typo that had major ramifications....
February 7, 2002 at 10:25 am
It very well could, yes, especially since you're going to see quite a bit of lock escalation if you are also making updates row by row. However, if the...
February 7, 2002 at 9:52 am
Actually, it's all contained within a DTS package at the present time. The tables for servers to check, reporting outages, and determining which servers notify which people are in...
February 7, 2002 at 9:40 am
How much time occurs between the full backup and the first transaction log backup? Also, unless the backups were one right after the other, could any nonlogged operations such...
February 7, 2002 at 9:21 am
I don't think there are a whole lot, either. Most of the DBAs around me operate from EM. I usually have QA open (EM not necessarily so) so...
February 7, 2002 at 9:11 am
A couple of simple things:
1) Wrote a "heartbeat" check program that makes an ADO connection to each SQL Server every hour. Production servers are reported to the DBAs and...
February 7, 2002 at 9:08 am
Correct. It is necessary on SQL 7. SQL 7 doesn't do the dummy records automatically.
K. Brian Kelley
February 7, 2002 at 8:23 am
quote:
USE NorthwindGO
SELECT CategoryName
FROM Categories
WHERE EXISTS (SELECT NULL)
ORDER BY CategoryName ASC
GO
and how the (SELECT NULL) comes into play.
February 7, 2002 at 8:04 am
What error are you getting?
The code create a global temporary table without issue on my system.
K. Brian Kelley
February 7, 2002 at 7:56 am
Mr. Travis is correct in that it will return the number of rows, all having NULL to be checked by the EXISTS() function, matching the parameters of the query contained...
February 7, 2002 at 7:47 am
Sounds like they covered their legal bases with their Terms and Conditions. This isn't surprising nowadays. With respect to a hosting solution, I don't have any experience with...
February 6, 2002 at 9:29 pm
Viewing 15 posts - 5,671 through 5,685 (of 6,105 total)