Viewing 15 posts - 3,166 through 3,180 (of 3,615 total)
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
CREATE RULE rl_BeforeNow AS @dtDate < GETDATE()
June 14, 2004 at 11:54 am
The date thing is an absolute pain
I have standardised on using yyyy-mm-dd as my date format in my applications and therefore my SQL always...
June 14, 2004 at 1:30 am
I take your point on upscaling webservers. I wish I knew more on the infrastructure side. Come to think of it, I wish I knew ANYTHING on the infrastructure side
June 13, 2004 at 11:43 am
Strictly speaking yes, it would be at risk from an injection attack, but not in the case of this particular CMS.
The execsp portion tells the CMS that this is a...
June 11, 2004 at 3:52 am
We develop a lot of UK government web-sites and accessibility is a major issue. That is, could this site be used by someone who is blind, can't use a mouse...
June 11, 2004 at 2:48 am
I don't agree because the topic id is not private information. In fact in the live application the topics are SIC codes so the SIC code is actually displayed on...
June 11, 2004 at 1:22 am
Viewing 15 posts - 3,166 through 3,180 (of 3,615 total)