Forum Replies Created

Viewing 15 posts - 15,586 through 15,600 (of 26,486 total)

  • RE: Are the posted questions getting worse?

    Grant Fritchey (5/6/2010)


    Steve Jones - Editor (5/6/2010)


    GilaMonster (5/6/2010)


    Grant Fritchey (5/6/2010)


    Hmmm... They never even asked me how many questions I answered. I think if you took away the number of times...

  • RE: Working with Temp Tables

    IF 1 <> 0

    BEGIN

    Select @sql = 'Select * INTO #myTemp1 From TableA'

    END

    ELSE

    BEGIN

    Select @sql = 'Select * INTO #myTemp1 From TableB'

    END

    EXEC(@sql)

    This runs but when I try to query #myTemp1 I get...

  • RE: Server uses system account????

    Adam.Massey (5/6/2010)


    Hello all,

    Had a problem come up that I have never seen and wanted to get some people's take on what I need to do...

    The situation:

    We have 3 servers that...

  • RE: Using the result of a function in the retrned values & where-clause

    Try this:

    with Search_cte as ( -- name the CTE appropriately

    select

    dbo.LEVENSHTEIN (USEARCH.firstname, ?) distance,

    * -- should really specify the columns...

  • RE: Today's Random Word!

    CirquedeSQLeil (5/6/2010)


    Lynn Pettis (5/6/2010)


    CirquedeSQLeil (5/6/2010)


    Lynn Pettis (5/6/2010)


    Sure

    Happy

    It's

    Thursday

    Friday would be better!

    Monday next week even better, only day I will be at work!

    The problem with that is you have to return to...

  • RE: Help with Query

    Came up with this waiting for clarification:

    DECLARE @Table TABLE

    (

    id int,

    ...

  • RE: Today's Random Word!

    CirquedeSQLeil (5/6/2010)


    Lynn Pettis (5/6/2010)


    Sure

    Happy

    It's

    Thursday

    Friday would be better!

    Monday next week even better, only day I will be at work!

  • RE: Help with Query

    vijay.s (5/6/2010)


    Dear Team,

    Kindly look into my problem

    DECLARE @Table TABLE

    (

    id int,

    ClientIdINT,

    bnmk_dt DATETIME,

    AmountINT

    )

    ...

  • RE: Today's Random Word!

    Sure

    Happy

    It's

    Thursday

  • RE: SQL Server DBA.... what next?

    I have to agree. If you are not happy as a DBA, perhaps you should look at other areas such as development. SQL Server is such a large...

  • RE: Temp

    Here is my take on it, tempdb is a system database and may be excluded from the 4 GB (or 10 GB) database limit. My best suggestion, contact Microsoft...

  • RE: Are the posted questions getting worse?

    Grant Fritchey (5/6/2010)


    Steve Jones - Editor (5/6/2010)


    Not a bad thing, but for those of you that are MVPs, keep that in mind when reporting. I tend to report about 3/4...

  • RE: Are the posted questions getting worse?

    Steve Jones - Editor (5/6/2010)


    Top Ten Posters in this thread (out of 15,100 or so)

    Lynn Pettis 1533

    CirquedeSQLeil ...

  • RE: Restore Db from transaction Logs

    mckinnj1 (5/6/2010)


    Lynn Pettis (5/5/2010)


    Didn't know you could run DBCC CHECK DB against a .bak file.

    Were you able to restore the database itself as under a differnet name using the .bak...

  • RE: problem with join

    From your post:

    Now i want something like this:

    Year booked shipped

    2008 300 null

    2009 500 ...

Viewing 15 posts - 15,586 through 15,600 (of 26,486 total)