Forum Replies Created

Viewing 15 posts - 106 through 120 (of 213 total)

  • RE: Lookup Table Madness

    And who has the time to design, code and test 300 different User Interfaces under the Setup portion of the Application?  We're talking about values that seldom if ever get...


    Student of SQL and Golf, Master of Neither

  • RE: DESIGNING a SQL Rocketship

    Antares:  Did you mean "Get one separate raid set to put both tempdb and logs on" or "Get two additional raid sets to put tempdb and logs on"?

    Seems to me...


    Student of SQL and Golf, Master of Neither

  • RE: Customer Service

    I keep thinking that there has to be a lower limit on intelligence, because the person is obviously still breathing, but I keep finding myself proved wrong.

    You rock Steve.  Every...


    Student of SQL and Golf, Master of Neither

  • RE: Using Parameters with Stored Procedures

    It's quite easy to build true, reusable command objects in VB.  We do it this way (this is an update only command, so no return parameters:

    Static cmdUpdate as adodb.command

          If cmdUpdate...


    Student of SQL and Golf, Master of Neither

  • RE: main memory database request

    For SQL Server, just use DBCC PinTable.  I'm assuming that this is a demo project, not a full fledged production process.  SQL Server will still write changes to disk, but...


    Student of SQL and Golf, Master of Neither

  • RE: Attempting Restore from EM high CPU, long time

    If this is the problem, (which I don't doubt, and will find out late at night or this weekend), what good is the setting in EM under maintenance plans that...


    Student of SQL and Golf, Master of Neither

  • RE: ''''Repair minor problems if possible''''?

    Cindy's base question was:   "If it does have to do a repair, does it show up in the log?"

    I understand your thoughts on "automatic repairs" but what is the answer...


    Student of SQL and Golf, Master of Neither

  • RE: Outer Join Trouble

    Steve made one very good point in his article, which you don't want to lose as this thread drifts away from joins to nulls.  The article was not about how...


    Student of SQL and Golf, Master of Neither

  • RE: Keeping data in synch

    At least for the two "live" datacenters, the easiest, most reliable solution is merge replication.  That's exactly what it was intended for.


    Student of SQL and Golf, Master of Neither

  • RE: What is the argument against IDENTITY columns

    By definition - a lookup table is going to be the object of joins and/or where clauses.

    Select P.Name, D.Description from Product P Left Join Descriptions D on P.DescriptionID = D.ID

    would...


    Student of SQL and Golf, Master of Neither

  • RE: What is the argument against IDENTITY columns

    For this exact set of conditions - a LOOKUP table that is probably added to/updated rather infrequently; you've ruled out ever using replication; you've decided that an Identity column is a...


    Student of SQL and Golf, Master of Neither

  • RE: What is the argument against IDENTITY columns

    As far as I can tell, yes, it is the fact that they are entirely artificial values that most bothers the folks that it bothers at all.

    Also, the identity property...


    Student of SQL and Golf, Master of Neither

  • RE: What is the argument against IDENTITY columns

    The Primary Key has to be a unique, unchanging value.  In a perfect world, there would be a "natural key" in any table and you wouldn't need to add a "surrogate...


    Student of SQL and Golf, Master of Neither

  • RE: Best way to restore a backup from another server at each night ?

    This setup seems to me to be a textbook case for using replication.  Use transactional or snapshot replication to make a one-way copy that is updated hourly, daily or whenever. ...


    Student of SQL and Golf, Master of Neither

  • RE: Question of the Day for 01 Dec 2005

    Well, as long as we're being picky, it defaults to 50 when you're using EM to define a field too.

    But, if you take the question literally as presented, the answer...


    Student of SQL and Golf, Master of Neither

Viewing 15 posts - 106 through 120 (of 213 total)