Forum Replies Created

Viewing 15 posts - 2,731 through 2,745 (of 3,008 total)

  • RE: Cross Joins

    The link I supplied is production code in use at my company and I believe a number of others.  If you want some more examples of how it is used,...

  • RE: Forced to sign a resignation letter !

    The probable reason for wanting you resign is so you can't collect unemployment.  If they lay you off or fire you without cause, you would be eligible to collect unemployment. ...

  • RE: How to find out the maximum among the four columns

    I think this is a better solution.

    It will be faster than a UDF.

    It is easier to scale up to as many columns as you need than using a CASE statement,...

  • RE: Cross Joins

    I gave two examples where a cross join could be used in my first post.

    It is common to have a table with configuration or default information with a single row.  To add...

  • RE: Page File Usage

    There is no reason to assume that the amount of SQL Server memory usage is related to the page file usage.

    Take a look at the Performance Monitor, Process, Working Set...

  • RE: Point in time restore issue - urgent

    Everyone is making this too hard.  Do it this way, it will make it impossible for anyone to be in the database becase it will be offline.

    use master

    go

    alter...

  • RE: Cross Joins

    Cross joins have their place, and are not something that you should avoid.  Like anything else, they should be used when and only when they are needed.  The same is...

  • RE: DBA''''s more scarce in 2007

    I recently had a discussion with a recruiter where I told him I didn’t want to interview a candidate because of the poor English in the resume: misspellings, bad punctuation,...

  • RE: Primary key naming convention

    We follow this naming convention, and actually enforce it.

    Table name:
    T_entitynameExample: T_ORDER_ITEM
    Identity Column Name:
    entityname_IDExample: ORDER_ITEM_ID
    Primary Key Name (name of the PK constraint, not the column)
    PK_tablenameExample: PK_T_ORDER_ITEM
    
  • RE: Cross Joins

    A cross join is used when you need to join without a join condition.  One case would be when you have a table with a single row.

    Another case would be...

  • RE: Rev Your Database

    Lots of developers try to blame the poor performance of their poorly designed and implemented queries on some “black art” or “unknowable mystery” deep within the database engine.

    Really, it’s just...

  • RE: Help.. DB Lost Owner

    >> Something happened by itself.

    That's extremely unlikely.

    Who was the database owner before this happened?

     

  • RE: delete

    It looks like there is no problem; all the tables are empty.

     

  • RE: Go Green

    The biggest hole in the Business Intelligence paradigm is that it assumes that there is some consumer for the system who will be able to use the information provided to...

  • RE: delete

    Those error could not have come from the script on that link.

    The errors are coming from some create table statements that you must have added.

     

Viewing 15 posts - 2,731 through 2,745 (of 3,008 total)