Viewing 15 posts - 2,056 through 2,070 (of 2,469 total)
Phew!!!! For some time I thought my responses were visible only to me and no one else...okay - so long as we're all talking the same language I'm fine...I only...
June 28, 2005 at 1:24 pm
okay - I'm going to ask for one LAST time and then forever hold my peace....
if the data is ALWAYS going to be full DOB or Year (as poster indicated)...what...
June 28, 2005 at 1:06 pm
The best way to do this is to have a copy of the client's database that you can work with - you then run all the scripts, updates etc. testing...
June 28, 2005 at 12:35 pm
Also, here's something else to "chew on" from BOL....
"COMPUTE and COMPUTE BY are supported for backward compatibility. The ROLLUP operator is preferred over either COMPUTE or COMPUTE BY. The summary...
June 28, 2005 at 12:08 pm
you have to have an aggregate function on the column that you are selecting (max, min, avg etc...) when you do a "group by"....in other words, the selected column should...
June 28, 2005 at 11:53 am
If it's ONLY the full DOB OR just the year, what's the argument against storing the YEAR ONLY value as a '01/01/yyyy' and using the flag indicator to specify that...
June 28, 2005 at 10:45 am
I can't test this out right now but I was wondering if it would not be better to convert it to money datatype instead of float - after all, we...
June 28, 2005 at 8:58 am
Hans - for the extra cents that you threw in, maybe Ann should go with checking ascii values....
SELECT @myNum = CASE WHEN ISNUMERIC(@myCol) = 1 AND ASCII(@myCol) >= 48 AND...
June 28, 2005 at 8:25 am
...except that the # of available days is 4 and not 3 as poster says...so maybe I don't understand either ?!
June 28, 2005 at 7:12 am
I think the first query is something like:
select * from periods
where fromdate >= '2005-07-01' and until = 1) -
(select (DATEDIFF(d, '2005-07-07', until) + 1) from periods
where until > '2005-07-07' and...
June 28, 2005 at 7:10 am
Remi - this may not be "wrong" data necessarily - it could be DOB or year of birth!
Since you already have a date field you could use it to store...
June 27, 2005 at 9:52 pm
Yeah! Dawn of a new era ??? This could only be the beginning of everything as it should be about certifications and testing skills!
Wonder if scc.com had (at the very...
June 27, 2005 at 9:41 pm
Here's something from one of my favourite SQL books from the chapter on database design...Robert Vieira ("SQL Server 2000 Programming") - (Normalization & other basic design issues):
"Choose what you need,...
June 27, 2005 at 3:21 pm
There are any number of ways to do this but you would basically be using LOWER() for the field in all but the first character - and if you have...
June 24, 2005 at 11:49 am
The response to this from Canadian GPF^... is going to be interesting because I have it on good authority that with this country the choices are so many that even...
June 24, 2005 at 10:35 am
Viewing 15 posts - 2,056 through 2,070 (of 2,469 total)