Forum Replies Created

Viewing 15 posts - 2,416 through 2,430 (of 7,498 total)

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (1/25/2011)


    ...I'll have to pick and choose where I go.

    Sheer luxury :Wow:

    at least if you compare it to most of us :blink:

    :w00t:

  • RE: SQL Query -- need help

    gary.morey (1/24/2011)


    I have 2 tables. The first table has a SessionID and other columns. There will be multiple SessionID's with the same value in this table.

    The second table has a...

  • RE: Primary Key and Foriegn Key

    A primary key _MUST_ be unique !

    none of the columns can be NULLable and the combination of all columns must be unique.

    Can you elaborate a bit on your "normalization criteria"...

  • RE: Are the posted questions getting worse?

    Grant Fritchey (1/24/2011)


    Threadizens not on Twitter might not have heard the word. I just took a job with Red Gate. It's up on the blog.

    I already had the impression such...

  • RE: Critique - Common SQL Server Mistakes

    Grant Fritchey (1/24/2011)


    Based on most of the comments, I'm alone on this one, but what the heck, I'll stick my neck out.

    I'm not crazy about it. I don't like the...

  • RE: Why it doesnt work??

    books online topic "FROM (Transact-SQL) " states

    [ FROM { <table_source> } [ ,...n ] ]

    <table_source> ::=

    {

    table_or_view_name [ [ AS ]...

  • RE: SQL Query -- need help

    please adjust your size settings and preview the result before posting:crazy:

  • RE: Are the posted questions getting worse?

    enjoying star wars episodeIII for the moment. scene = the assembly of darth vader :w00t:

  • RE: Critique - Common SQL Server Mistakes

    Michael Valentine Jones (1/21/2011)


    I think the big mistake that beginners make with triggers is using them at all. They see them as a sort of event driven solution, and...

  • RE: Why it doesnt work??

    Lutz covered it perfectly :w00t:

    Further info can be found in books online topic "Using Table Aliases"

  • RE: Why it doesnt work??

    Just assign an alias to your nested query expression and it will be OK

    select count (*) from

    (select codaux,nomaux from aqua.softland.cwtauxi

    except

    select codaux,nomaux from 0718.softland.cwtauxi) as x

  • RE: Critique - Common SQL Server Mistakes

    - why all your columns by default should be NOT NULL ! unless you really really really need to know no value has been provided (and the datatype default doesn't...

  • RE: Potential Complications/Problems

    That's not backup but a file copy.

    That will only work if your sqlinstance has been shut down before copying the files unless you use special snapshoting software that knows to...

  • RE: Primary Key and Foriegn Key

    As you notices, a foreign key can only refer to the full primary key.

    Can you implement a surrogate key ?

    (and create a unique constraint for your current primary key constraint)

    Think...

  • RE: Critique - Common SQL Server Mistakes

    - Books online. and how to get there the easy way .

    (highlight your keyword and hit shift+F1)

    - point to "when using the query designer, this is how...

Viewing 15 posts - 2,416 through 2,430 (of 7,498 total)