Forum Replies Created

Viewing 15 posts - 631 through 645 (of 852 total)

  • RE: SQL or Oracle

    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,...

  • RE: Building a view to get summary data from multiple tables

    [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...

  • RE: SQL or Oracle

    [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,...

  • RE: Aviod loading the files in SSIS

    [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...

  • RE: Time Duration Addition

    [font="Verdana"]You can try casting to datetime, then using datediff() to calculate the number of seconds.[/font]

  • RE: Problem With IsNumeric()

    [font="Verdana"]I would have expected that to work! Is it still failing on the same number? ('2908H')[/font]

  • RE: Problem With IsNumeric()

    [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...

  • RE: Conversion failed when converting datetime from character string

    [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...

  • RE: Multiple Batch Insert

    James (2/16/2009)


    So does it mean that it has no alternative solution for this kind of situation? Because no matter how I defend the matter of upgrading express to standard edition,...

  • RE: Multiple Batch Insert

    [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...

  • RE: Why do people need to do this?

    smunson (2/15/2009)


    Bruce, you've described to a tee what I had in mind when I said "failure to think" .... nailed it, scored a 10, etc., etc., ... ...

  • RE: SQL or Oracle

    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....

  • RE: SQL or Oracle

    Jeff Moden (2/15/2009)


    Not even close... in no way is Oracle even close to SQL Server or vice versa. Let's start with the basics, like returning a result set to...

  • RE: Group cumulative data

    [font="Verdana"]CTE: Common Table Expression. Introduced in SQL Server 2005. Well worthwhile learnng! They make complicated SQL statements so much clearer.[/font]

  • RE: Building a view to get summary data from multiple tables

    [font="Verdana"]...go program in lisp then. looks disgusted :P[/font]

Viewing 15 posts - 631 through 645 (of 852 total)