Forum Replies Created

Viewing 15 posts - 21,406 through 21,420 (of 22,202 total)

  • RE: Creating a table in Management Studio with a different schema

    But if you're using the GUI and you still need to change the schema, display the properties page from the table creation screen. You can change the schema there. Same...

  • RE: FASTFIRSTROW hint

    It can be useful if you're returning a large amount of data and you don't want to wait for all the rows to process prior to the data returning. You...

  • RE: Dead lock issue

    If you're getting primary key violations, something else is up. You may also need to post the structure of the table you're inserting into.

    Is that the complete procedure? Is there...

  • RE: Trace Flags 1204 and 1205 :crazy:

    We use just 1204. I'm wondering though if we shouldn't switch it over to 1222. The XML output looks easier to read. Anyone using that?

  • RE: Passing Porcedure Parameters using N'

    Not stupid, you just needed a nudge.

    I've been going around telling all & sundry that the bit data type wouldn't take a null. Then Gail just simply tells me I...

  • RE: Passing Porcedure Parameters using N'

    Instead of VARCHAR, if you use NVARCHAR, that might address the issue.

  • RE: Performance Tuning and Database Tuning Advisor SQL 2005

    I love the missing index DMV's. They're not a panacea either, but they sure can help you spot something simple quickly.

  • RE: Performance Tuning and Database Tuning Advisor SQL 2005

    Just to toss in a contrarian view point, I've never had DTA recommend a single index that was worth the trouble it took to run a series of scripts through...

  • RE: Trace Flags 1204 and 1205 :crazy:

    If you're not already cycling your error log, you should.

    Daily seems a bit high. We cycle ours once a week.

  • RE: Known problems with bit-columns?

    Boy. I don't know where I've been. I sure thought it was that way. Maybe I'm channeling some old bit of knowledge from a different system. Damn. I hate being...

  • RE: why do we need to use Locks?

    You have to start from a concurrency model. It's either pessimistic or optimistic. You seem to be assuming an optimistic model, there are unlikely to be very many or any...

  • RE: Where to start with Stored Procedures

    That's about as open ended a question as it's possible to ask.

    Obviously, the Books Online would be a great place to start. I'd also suggest perusing Itzik Ben Gan's TSQL...

  • RE: passing csv list into stored procedure

    If it's possible, format the delimited list as XML and use XQuery to retreive it from there. We've started to find this a more optimal approach than the old one...

  • RE: large table to table copy

    Not wrong, at all, but with something this large, I'd suggest the possibility of looking at exporting to a file and then using BULK INSERT to move across. It's a...

  • RE: Software Teams

    Great comments. That is one of the most difficult problems we encounter working with development teams. They don't trust us and we certainly don't trust them. It takes a while...

Viewing 15 posts - 21,406 through 21,420 (of 22,202 total)