Forum Replies Created

Viewing 15 posts - 17,476 through 17,490 (of 26,489 total)

  • RE: Today's Random Word!

    tosscrosby-60625 (1/12/2010)


    Obstinate - reminds me of my 15 year old daughter (and my other daughter when she was about the same age!!). They do mellow as they get older, thank...

  • RE: Exclude a column from SELECT * within a View

    The problem is duplicate column names between the tables. If the columns names in all the tables were guarantteed to be unique, you could get away with the *...

  • RE: Today's Random Word!

    crookj (1/12/2010)


    Lynn Pettis (1/12/2010)


    crookj (1/12/2010)


    CirquedeSQLeil (1/12/2010)


    Burrito

    Make that a steak burrito from Chipotles (lunch today)

    Joe

    Chicken Fajita Burrito. That was lunch yesterday at Chipolte.

    Darn - Missed ya by a day. We...

  • RE: Exclude a column from SELECT * within a View

    The only way to do what you want is to explicitly list all the column names from both tables and then alias one or both of the column names that...

  • RE: update qry

    lmu92 (1/12/2010)


    Lynn Pettis (1/12/2010)


    We are updating the column with the results of the "concatenation". Since the field is real (numeric) 2009.1 and 2009.10 are the same.

    It's still an insoluble...

  • RE: Exclude a column from SELECT * within a View

    How do I know if I have the correct answer if you don't show me what the correct answer is? How do I test with out test data?

  • RE: update qry

    lmu92 (1/12/2010)


    Just for the sake of it (since the business reason is still a secret to me):

    DECLARE @TheColumn INT

    SET @TheColumn = 1

    SELECT left((2009 + @TheColumn / CASE WHEN @TheColumn...

  • RE: update qry

    If we were working with character data, then we could have done 2009.1 and 2009.10. However, working with real (numeric) data we actually had modify the requirement and precede...

  • RE: Exclude a column from SELECT * within a View

    BH-428850 (1/12/2010)


    Okay here is a pretty simple example. Keep in mind each client could have different columns within these tables as some of them can be user defined. There are...

  • RE: update qry

    lmu92 (1/12/2010)


    Tara-1044200 (1/12/2010)


    great, Lynn's query

    update dbo.TheTable set

    TheColumn = 2009 + (TheColumn / 100.00)

    worked for me.

    For the same real data type how would i...

  • RE: Comparing and Deleting repeating values in semicolon delimited string

    Does the order of the data in the record matter?

    Edit -- Never mind. I got sidetracked. My development servers finally came back up and I had work to...

  • RE: how to add column in specified location in a table

    GilaMonster (1/9/2010)


    Lowell (1/9/2010)


    for aesthetic reasons (meaning it looks right to you), it's probably easiest to use SQL Server Management Studio to do this, because the designer lets you change the...

  • RE: Today's Random Word!

    crookj (1/12/2010)


    CirquedeSQLeil (1/12/2010)


    Burrito

    Make that a steak burrito from Chipotles (lunch today)

    Joe

    Chicken Fajita Burrito. That was lunch yesterday at Chipolte.

  • RE: Tools to Generate SQL Server 2005 Database???

    Not only that, but IIRC, you should be able to connect Visio directly to SQL Server 2005/2008 and create the tables directly.

  • RE: Tools to Generate SQL Server 2005 Database???

    If they have the DDL in scripts (text files?), you should be able to open those and run them in SSMS (SQL Server Management Studion) which is a part of...

Viewing 15 posts - 17,476 through 17,490 (of 26,489 total)