Forum Replies Created

Viewing 15 posts - 18,601 through 18,615 (of 22,202 total)

  • RE: Are the posted questions getting worse?

    Good or bad, as long as stuff isn't plagiarized.

  • RE: Best Practices for Passing 50 or More Parameters to Stored Proc

    In my experience, it depends on the number of rows. Opening XML is somewhat expensive inside SQL Server. I've found that if I'm moving fewer than ~100 rows (and yes,...

  • RE: Limiting users to views only in database

    Risking a pork chop, I'm going to disagree with Jeff on this.

    You should look at option 1, but as was mentioned before, create a schema for the views. Also, I'd...

  • RE: Relying on tuning advisor for indexing

    Just to pile on a bit, I find the DTA to be very problematic. I've given it substantial loads to see what it will do and it misses very obvious...

  • RE: Database Size

    You have two things going on. First, you have data in the database. The more data, the bigger the files. To make the testing system smaller, remove unused data.

    Second, as...

  • RE: How to use SQL Lock's into our code

    avhlasith (1/26/2009)


    Hi all,

    i need to use SQL lock into my sql quaries. but im not familiar with SQL lock if you can tell how i use it and...

  • RE: General Search/SQL Performance question

    Using COALESCE or ISNULL in the WHERE cluase usually prevents SQL Server from using an index on the query if one exists. Forcing the query to perform only table or...

  • RE: Performance Tuning of SQL 2008

    Tweaking the disk, especially from RAID 10 to RAID 1, is only going to get you a marginal increase in performance. I'd concentrate on the queries, indexes (full text indexes...

  • RE: Subtype PK Name

    Sure, it makes sense. It even works well a good percentage of the time. There's still that disconnect between Person & Employee that has to be documented and explained to...

  • RE: Performance Tuning of SQL 2008

    Personally, I'd stick with RAID 10. The added safety is worth more than a small increase in speed.

    You've collected performance data and the bottleneck is I/O and you've tuned the...

  • RE: Training

    That's a very open ended question. I don't know what kind of work you need done.

    I'd start them off writing TSQL queries so that they begin to understand how databases...

  • RE: SP_DBOPTION

    Yep, right there in the BOL. I had to look it up just to verify.

  • RE: Sql Query Help

    There are three ways you can do this easily. Use TOP, MAX or ROW_NUMBER. I'd recommend testing your system with TOP or ROW_NUMBER because, in my experience, MAX generally doesn't...

  • RE: Database Diagram

    So did you try what I laid out in the post you put up yesterday?

    http://www.sqlservercentral.com/Forums/Topic641528-149-1.aspx

    If it didn't work, what went wrong?

  • RE: Subtype PK Name

    timothyawiseman (1/22/2009)


    I'll agree with Grant, though there are some cases where it makes sense to have a column named Id in the base table and then the foreign keys referencing...

Viewing 15 posts - 18,601 through 18,615 (of 22,202 total)