Viewing 15 posts - 631 through 645 (of 852 total)
Roy Ernest (2/16/2009)
I know for a fact that Oracle will loose in a MS SQL Forum... But these many people against it ??:unsure:
[font="Verdana"]I don't see many people (other than Jeff,...
February 16, 2009 at 1:12 pm
[font="Verdana"]Doing a full outer join was a nightmare (union of left and right outer joins) and doing a full cartesian product, er, cross join, was far too easy. The...
February 16, 2009 at 1:07 pm
[font="Verdana"]I guess I see it as "value to the business". Yes, there is (I agree) a paradigm shift in how you program between PL/SQL and T-SQL. And yes,...
February 16, 2009 at 1:05 pm
[font="Verdana"]My suggestion would be that after you load a file, zip it. Then you can easily determine which files you have already loaded (and the loaded files take less...
February 16, 2009 at 12:56 pm
[font="Verdana"]You can try casting to datetime, then using datediff() to calculate the number of seconds.[/font]
February 16, 2009 at 12:50 pm
[font="Verdana"]I would have expected that to work! Is it still failing on the same number? ('2908H')[/font]
February 16, 2009 at 12:49 pm
[font="Verdana"]In another thread, Jeff Moden reminded me that numbers of the form '1d3' and '1e3' are legitimate.
A quick example:
select isnumeric('1d4'), isnumeric('1e4')
select cast('1d4' as int)
select cast('1e4' as int)
So I suspect you...
February 16, 2009 at 12:31 pm
[font="Verdana"]Whoa!
Those look like timezone dependent dates (I'm guessing the -8.00 on the end of one is GMT - 8 hours.)
You will need to use some sort of case statement and...
February 16, 2009 at 12:26 pm
James (2/16/2009)
February 16, 2009 at 12:18 pm
[font="Verdana"]Please tell me you are not designing a high volume data solution using SQL Server Express? I believe there's a limitation on the size of database it supports, for...
February 15, 2009 at 8:18 pm
smunson (2/15/2009)
February 15, 2009 at 8:00 pm
Jeff Moden (2/15/2009)
Anything that won't even allow for more than a 30 character object name certainly isn't the most flexible of the two.
[font="Verdana"]Okay, now I have to agree with you....
February 15, 2009 at 7:52 pm
Jeff Moden (2/15/2009)
February 15, 2009 at 7:50 pm
[font="Verdana"]CTE: Common Table Expression. Introduced in SQL Server 2005. Well worthwhile learnng! They make complicated SQL statements so much clearer.[/font]
February 15, 2009 at 7:02 pm
[font="Verdana"]...go program in lisp then. looks disgusted :P[/font]
February 15, 2009 at 7:01 pm
Viewing 15 posts - 631 through 645 (of 852 total)