Forum Replies Created

Viewing 15 posts - 1,126 through 1,140 (of 2,469 total)

  • RE: Trigger that checks other tables

    my apologies for obsessing over spellings since that is not an issue here...but could you please change wharehouse to warehouse ?!?!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: if field value numbers only then

    chiming in with my 2Cs here...agree with Chisholmd as well - whenever I answer a post I always try to respond specifically to the question (unless I don't understand it...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: T-SQL Print Command help please

    anytime jeff!

    seeing as how you always get everything right (hurry or not) this was probably a one-time catch!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: alter command help

    this post is being answered here







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: T-SQL Print Command help please

    ..except you'd want to change the double quotes to single...

    SELECT 'This is a test'







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: create table and populate

    is this what you're looking for ?!

    CREATE TABLE NewTable

    (colOne int,

    colTwo varchar(50))

    INSERT INTO NewTable

    SELECT colOne, colTwo

    FROM OldTable







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: udf - find upper case

    david - a function like this would count the # of uppercase instances and return you the number...you could modify it suit your needs:

    <pre class="code"

    CREATE FUNCTION dbo.CountUpperCase(

    @String varchar(20))

    RETURNS tinyint --...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: why different ans. get in QA and Enterprise for date function

    shashank - again - as far as I know - this is not possible!

    That being said - why would you want to change the EM display - what really matters...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: why different ans. get in QA and Enterprise for date function

    afaik it is because the EM implicitly uses the "regional settings" whereas in the Query Analzyer, unless you set the connections options under "Tools" to "use regional settings when displaying...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Query help

    you can use part/all of this script







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: COmparing an Alphapet in Store Proc

    Also keep in mind collations and case sensitive/insensitive databases...if that matters!!!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Supressing repeating values?

    something similar was addressed a few days ago and the general consensus was that this should be done client-side...however, Lee did come up with a solution...

    lee's solution







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: A Moment of Silence

    Thankful is what I have been every single day that I've been following the news and the devastation that katrina has left in her wake...cannot imagine what it must be...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: NOT FOR Replication

    I think this is the script that does just that...

    script







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Cursors

    have a feeling it's going to be a loooooooong wait!







    **ASCII stupid question, get a stupid ANSI !!!**

Viewing 15 posts - 1,126 through 1,140 (of 2,469 total)