Viewing 15 posts - 3,151 through 3,165 (of 3,606 total)
The signature is allegedly the marriage proposal that the actor, Robert Mitchum, made to an actress whose name escapes me. I think she accepted.
June 28, 2004 at 2:06 am
Yes,
I have a stored procedure that has a @choice argument. Depending on the value of that argument I execute various stored procedures.
The other thing that is possible is to create...
June 28, 2004 at 1:44 am
A common mistake is to confuse connections with users.
One connection is automatically taken up with by SQL Server itself.
If you have EM and QA open then you've just used another...
June 28, 2004 at 1:40 am
I think the point at which the "throttle" become noticeable depends on what you are doing with the database.
I've had over 25 users on bog standard Access 2.0 but all...
June 26, 2004 at 5:19 am
If you are going to use a case statement in your WHERE clause, I would put one in your SELECT as well to warn you that field2 is zero.
June 23, 2004 at 1:27 am
I did consider writing some matching functions for SQL Server having written a number of deduplication programs.
In the end I shyed away from it because it involves heavy string manipulation...
June 23, 2004 at 1:21 am
I know you don't have to specify the owner, but MS made a big song and dance about it being best practice.
June 22, 2004 at 7:46 am
I am also a fan of Metaphone. The guy who wrote it (Lawrence Phillips) went on to work for Verity, the search engine people so that should tell you something.
Unfortunately...
June 22, 2004 at 4:17 am
I have to admit outsourcing scares me witless.
In the States it may have been the case of someone working for US$7/hour instead of US$10/hour but outsourcing to India means competing...
June 21, 2004 at 12:58 pm
A primary key defaults to a clustered index, but you can choose explicitly not to cluster it.
I'm pretty sure that a a primary key is needed for certain types of replication.
I'm...
June 18, 2004 at 12:25 pm
How many Mb does 9 Million records represent?
If you run the following query
SELECT SUM(Length)
FROM SysColumns
WHERE ID=Object_Id('dbo.<<your table name>>')
You will get a very crude idea of your record length.
Multiply this by...
June 18, 2004 at 8:11 am
How big is the phsical TEMPDB log file?
Is it set to autogrow?
June 18, 2004 at 1:37 am
Good article!
One thing I'm not sure of is where you would use CREATE STATISTICS.
I know indices maintain their own statistics but if you do a query using an ORDER BY,...
June 17, 2004 at 1:41 am
I seem to remember on of the Brians posting something to the affect that physical file defrag was of limited use if you database was on a RAID 5 array...
June 15, 2004 at 8:41 am
Viewing 15 posts - 3,151 through 3,165 (of 3,606 total)