Forum Replies Created

Viewing 15 posts - 571 through 585 (of 771 total)

  • RE: How To Format Phone Number

    Jack Corbett (4/17/2009)


    I'd let the UI do the formatting. In the case of a system that I am currently involved in developing that includes international phone numbers you could...

    Kindest Regards,

    Just say No to Facebook!
  • RE: Thoughts on Job Execution on Multi-Processor System: Synchronous or Asynchronous

    Just curious if the question is badly worded, a dumb question or is this really something no one has any input/thoughts on?

    IS there a better forum for this item?

    Kindest Regards,

    Just say No to Facebook!
  • RE: How To Format Phone Number

    I'm also curious if anyone knows if MS is working on any future Mask() function for T-SQL that would do this kind of thing but on a much more flexible...

    Kindest Regards,

    Just say No to Facebook!
  • RE: Looking for Any Published Material On NULL & its Use

    First off let me thank everyone who took the time to repy back on this; I know the whole NULL issue can ofetn be as dangerous to discuss as politics....

    Kindest Regards,

    Just say No to Facebook!
  • RE: Who has accessed my 2005 server?

    Jack Corbett (2/9/2009)


    I modified the code in the script to fix this oversight. Steve just needs to release the updated code. Here it is here as well:

    SELECT

    ...

    Kindest Regards,

    Just say No to Facebook!
  • RE: How to Dynamically change what actions a Jobs steps take

    Thanks for the feedback Vishal.

    Kindest Regards,

    Just say No to Facebook!
  • RE: The T-SQL Paradigm

    Jason Miller (4/7/2009)


    Michael Valentine Jones (4/6/2009)


    YSLGuru (4/6/2009)


    Jason Miller (4/6/2009)


    GSquared (4/3/2009)


    For example, why doesn't this work:

    select Col1, count(*)

    from dbo.MyTable;

    And the follow-up where,

    -SNIP-

    I don't see how the example you gave would give...

    Kindest Regards,

    Just say No to Facebook!
  • RE: The T-SQL Paradigm

    Jason Miller (4/6/2009)


    GSquared (4/3/2009)


    For example, why doesn't this work:

    select Col1, count(*)

    from dbo.MyTable;

    And the follow-up where,

    select Col1, Col2, count(*)

    from dbo.MyTable

    GROUP BY Col1, Col2;

    select Col1, Col2, count(*)

    from dbo.MyTable

    GROUP BY Col2, Col1;

    Are not...

    Kindest Regards,

    Just say No to Facebook!
  • RE: The T-SQL Paradigm

    GSquared (4/3/2009)


    YSLGuru (4/3/2009)


    GSquared (4/3/2009)


    T-SQL is clunky in certain regards. For example, why doesn't this work:

    select Col1, count(*)

    from dbo.MyTable;

    SQL Server will raise an error that Col1 is neither contained in...

    Kindest Regards,

    Just say No to Facebook!
  • RE: The T-SQL Paradigm

    I believe you'll find most who complain about SET based languages are those who first learned procedural based language(s) and therefore have a hard time transitioning to a SET BASED...

    Kindest Regards,

    Just say No to Facebook!
  • RE: The T-SQL Paradigm

    GSquared (4/3/2009)


    T-SQL is clunky in certain regards. For example, why doesn't this work:

    select Col1, count(*)

    from dbo.MyTable;

    SQL Server will raise an error that Col1 is neither contained in a Group...

    Kindest Regards,

    Just say No to Facebook!
  • RE: Date-ing Myself & Other T-SQL Date Tricks (and bad puns)

    GilaMonster (3/24/2009)


    Converting to varchar and back is a poor way of getting the start of month. It's much slower than using date functions.

    select dateadd(mm, datediff(mm,0, getdate()),0)

    Then the formatting to not...

    Kindest Regards,

    Just say No to Facebook!
  • RE: Date-ing Myself & Other T-SQL Date Tricks (and bad puns)

    Another great question posted by Michael Valentine Jones

    Why not at least produce the year and month in a sortable form?

    select YearMonth = convert(varchar(7),getdate(),121)

    Results:

    YearMonth

    ---------

    2009-03

    I have links to a lot...

    Kindest Regards,

    Just say No to Facebook!
  • RE: Date-ing Myself & Other T-SQL Date Tricks (and bad puns)

    Below was posted in response to a copy of this posting that was not supposed to have gone up yet:

    From Bruce W Cassidy:

    Okay, some thoughts:

    The first is, do you really...

    Kindest Regards,

    Just say No to Facebook!
  • RE: Quick Question about SQL ALerts

    Thanks Mohit

    Kindest Regards,

    Just say No to Facebook!

Viewing 15 posts - 571 through 585 (of 771 total)