Forum Replies Created

Viewing 15 posts - 17,356 through 17,370 (of 39,903 total)

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (12/14/2010)


    GilaMonster (12/14/2010)


    Want some entertainment? I give you Gus's reply here http://www.sqlservercentral.com/Forums/FindPost1034345.aspx, nominated for comment on the week.

    It almost resulted in coffee over laptop.

    I can see why. @=) I'll...

  • RE: The Low End

    The "low end" refers to the barrier to entry. It's easy(ier) to pick up development skills on these products, as opposed to C/C++

  • RE: The Low End

    Ron Porter (12/14/2010)


    By accepting it and bringing it into the open, you have the chance to provide skill-appropriate guidance, reduce the duplication of effort, and identify prime candidates for more...

  • RE: Talking baseball

    Heard Tim Legler on Mike and Mike say that most of the time this doesn't work. 97 Marlins, '09 Yankees were able to buy a championship. Most other times it...

  • RE: Dev team wants to rely heavily on Views... performance problems?

    For the most part I agree with GSquared. The performance issues can grow as you layer and nest things. UDFs and Views, while abstracting and reusing code, often mask issues....

  • RE: Inserting duplicate key?? Why??

    What is the primary key on bookingactivity?

    You can find duplicates by using a GROUP BY on the pK and a having count(*) > 1. What you first need to do...

  • RE: Using "Use" in stored procedure

    You cannot do this. You would either need to create the tables with the proper database name as I've done with dynamic SQL, or run a pre-written script. If the...

  • RE: /3GB

    /3GB allows a 32 bit application in Windows to use up to 3GB of space (leaving 1GB for the OS). However SQL Server Standard (2000) has a limitation of 2GB.

  • RE: How Do You Work When You are Not at Work?

    For me, email is really the way I hear about things. I have a smartphone, iPad, and multiple machines. On one of those, I'll get a note. It could be...

  • RE: Date Conversion

    As far as the conversion, you need a valid date, no matter what the format. If there is '00000', this isn't remotely valid.

    What you can do is look for...

  • RE: Restore database

    Only for convention. These are just file names and extensions, no relation to how SQL Server uses the files.

  • RE: Create Delete Stored Proc with dependencies

    Your description is not clear about what you are looking for. What dependencies? What are you expecting the stored procedure to do?

  • RE: filtering result

    What does filter mean? Are you looking to return this in a report or delete the data?

    If duplicates, the distinct keyword can help you in a query to only show...

  • RE: SQL 2000 question

    I believe the limited information for these is sysobjects in SQL 2000. There were many fewer system views in SQL 2000.

    Moved to SQL 2000

  • RE: Database role to create tables

    I would use two roles here. One to read only from old tables, one to allow DDL activities.

    If someone can create tables, they will be able to read/write from...

Viewing 15 posts - 17,356 through 17,370 (of 39,903 total)