Viewing 13 posts - 76 through 88 (of 88 total)
>>I blame the practice on Access database users.<<
Poor, maligned Access users! 🙂
I came to SQL Server via Access, but I *never* used spaces in names.
On the other hand, I've...
October 1, 2003 at 3:31 pm
Thanks for all your helpful posts! I knew I would get good answers from this gang 🙂
You were all correct -- the prefix values needed to be zeros (From a...
March 13, 2003 at 10:53 am
FORMAT FILE FLOPS FOR FIXED-LENGTH FILE...
I'm having a great deal of difficulty trying to BULK INSERT from a fixed-length text file into a SQL Server 2000 (SP3) table. From scanning...
March 7, 2003 at 10:23 pm
whoops, talk about a good example of things not retaining original spacing when you cut and paste... my header example lost all of my laborious indentation.
-- SteveR
January 24, 2003 at 11:30 am
A very good thread, thanks again Andy!
I do like to include a header, for many of the same reasons others have mentioned. I've included a sample of a typical one...
January 24, 2003 at 11:28 am
Be careful with counting on GROUP BY to do ordering with SQL 2000. This may still work on version 7.0 and below, but you can't really tell beforehand if a...
November 10, 2002 at 7:51 pm
quote:
If you use the 'permanent' temporary table with the SPID column, you will want to clear it at the start of your...
October 15, 2002 at 12:55 pm
Hola osoto!
If you decide to use a permanent table, I'd suggest adding a column called SPID, and when you do your insert into the table, include @@SPID (process ID) as...
October 10, 2002 at 5:24 am
I gotta love 'em!
Back in '89, I learned the concepts of RDBMS, data modeling, etc, but couldn't find a tool to practice on (there was no way the IS people...
September 5, 2002 at 8:12 am
Hi!
In your case, you should be able to repeat the entire CASE statement (minus the alias) as a GROUP BY :
GROUP BY
CASE WHEN DATENAME(weekday, (CONVERT(varchar(10),mydate,103))) = 'Friday'
THEN 1
WHEN DATENAME(weekday,...
September 3, 2002 at 11:40 am
>>What are your opinions on numer 1, 5 and 6 on http://www.intelligententerprise.com/001205/celko1_1.shtml?<<
Hi Michael!
Thanks for the great link to Joe Celko's article, "Ten Things I Hate About You -...
August 27, 2002 at 7:30 am
This is an excellent thread -- I learned a number of new things! Thanks, Andy.
As to the use of Identity columns as Primary Keys verus using "natural" keys -- I've...
August 12, 2002 at 7:02 pm
Steve - a very good article - thanks very much! I also was struck by practicality of your use of commas ahead of each column in the SELECT.
I'd be...
July 2, 2002 at 8:48 am
Viewing 13 posts - 76 through 88 (of 88 total)