Forum Replies Created

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

  • RE: Custom Schemas

    Bill Talada (11/13/2015)


    I could be wrong but I'm pretty sure there is no nesting of schemas...so there is no such thing as a sub-schema. And I think setting a...

  • RE: Custom Schemas

    I have separate instances for Prod/Dev etc. due to differences in underlying hardware, installed tools, etc. I use databases and schemas in my instance to separate functionality and as security...

  • RE: More wildcard searches

    I suspect the author intended the first one to be a trap but accidentally added coffee in front of bean which made it a valid row. As written, the answer...

  • RE: ER Modeling

    Part of the problem is the common misconceptions about what a data model is. The comments have touched on some of the uses but miss the big picture. So often...

  • RE: Logical File Names

    The formula for should be 42/purple but remember to carry the 2 🙂

  • RE: Naming Confusion

    I have settled on using prefixes for the elements most likely to cause problems, e.g. DEV_EDW_SQL and PROD_EDW_SQL for our development and production Enterprise Data Warehouse SQL servers, and DEV_EDW_SSAS_BLD,...

  • RE: How Virtualized?

    Out of 200, all but 1 and that's only because the P2V failed.

  • RE: April 1 2015, a space oddity

    TomThomson (4/2/2015)


    Revenant (4/2/2015)


    I am surprised that only 43 percent got this one right - if it is the answer to everything, it must be correct.

    it can't be the answer to...

  • RE: April 1 2015, a space oddity

    Actually, it's a trick question. As soon as the monkey picks up his foot to kick he falls over because he can't balance on his peg.

  • RE: Drop Database

    Should have told me that before I just did it. The files are gone.

  • RE: Drop Database

    Deleting the database does allow getting rid of the database files even when the database is offline.

  • RE: Using EXCEPT to Determine Row Differences

    Very nice. By using LEFT JOIN rather than INNER, the example also returns the unmatched rows.

    DELETE FROM #Target WHERE Item = 'Fig';

    GO

    INSERT INTO #Source

    ...

  • RE: Synonyms 1

    I got it right but for a different reasoning. Since the HumanResources schema wasn't specified, the synonym would be created for the non-existant dbo.Employee table and the query would fail...

  • RE: sp_rename and the procedure definition

    Maybe I'm missing something. To test I executed the first component to create the SP. I looked in SSMS and saw the incorrectly named SP. I then ran the sp_rename,...

  • RE: Is a foreign key constraint an index? If not, is an index automatically created in order to enforce it?

    I think the point value was appropriate, not due to the difficulty of the question, but rather the value of knowing the basics well. Knowing some arcane bit of trivia...

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