Forum Replies Created

Viewing 15 posts - 16 through 30 (of 94 total)

  • RE: Creating indexes on computed columns

    Very disappointing. This is a fairly basic question. A little proofreading could have prevented this from becoming a bad question.

  • RE: VARCHAR datatype

    Kanaka (7/19/2010)


    I am not sure why sql server 2008 returned 1, inspite of not giving the variable length.

    I knew this would give a syntax error, however, I tried this and...

  • RE: VARCHAR datatype

    Thanks for all of the feedback. I definitely should have considered case-sensitivity, especially since we have several case-sensitive database here. In hind sight, I should have made everything...

  • RE: T-SQL 2008

    This is straight from the link supplied in the answer.

    SQL Server 2008 introduces several extensions to the GROUP BY clause that enable you to define multiple groupings in the same...

  • RE: Enforcing Data Quality while using Surrogate Keys

    I'm a big fan of using surrogate keys when designing databases, but they are not intended to enforce data integrity. They should be used to simplify joins and used...

  • RE: how to use variable in dateadd

    You can't use a variable to pass in that DATEADD parameter. The only way I know of to do what you're attempting is to use dynamic SQL like this:

    DECLARE...

  • RE: DYTPE IN

    They're not being used, so they shouldn't affect it at all.

    Greg

  • RE: DYTPE IN

    Year would be another column and the query is looking for 2008.

    Greg

  • RE: DYTPE IN

    It looks like DTYPE is the column name. IN refers to the values inside the parenthesis. Basically it could be rewritten as DTYPE = 'DEPR' OR DTYPE =...

  • RE: Inserting XML into a temp table

    Although I never figured out why the same stored procedure was behaving differently in the two different environments, I did resolve this issue. I decided to take a completely...

  • RE: Inserting XML into a temp table

    Here are the two execution plans.

  • RE: Attached Database Without LDF

    You can attach the .mdf file without the .ldf file. When you go to attach it, the interface may say log file not found in the lower pane. ...

  • RE: Why Are There So Many Editions?

    GSquared (2/25/2009)


    matt stockham (2/25/2009)


    Steve Jones - Editor (2/23/2009)


    Produce new SKUs? Why not "unlock" features? You have the technology in the XBOX group to unlock things according to some event.

    You mean...

  • RE: using a composite column name in Select

    If I understand correctly, you want one total result set instead all of the individual ones. If your iteration is happening in the stored procedure, you can insert them...

  • RE: Get data from vertical to horizontal table

    One of the main reasons to use a join is to get data from more than one table. The above query should work assuming that the columns specified are...

Viewing 15 posts - 16 through 30 (of 94 total)