Viewing 15 posts - 19,216 through 19,230 (of 22,202 total)
Jeffrey Williams (11/26/2008)
Or, you could try using SET FMTONLY OFF; in your stored procedure. One thing the TableAdapter is probably doing is running the stored procedure with format only...
November 27, 2008 at 5:45 am
It sounds like you're getting parameter sniffing. You need to force a recompile on the procedure. Take a look at plan guides and see if you can implement one with...
November 26, 2008 at 1:16 pm
Another vote for that book. Great read and good information.
Just remember that getting the clustered index right should be task #1. All other indexing flows from there.
November 26, 2008 at 11:16 am
Sweet!
I'll bet it makes programming easy.
November 26, 2008 at 11:15 am
Still, if it came down to it, I'd rather see inplace updates generating the aggregates than a series of columns going across a row. That's just horribly sloppy design. Again,...
November 26, 2008 at 10:46 am
No, sorry, I'm not an ASP.Net programmer. I'd suggest trying either MSDN or Simple-Talk, just to get started. Other than that, I'm clueless. Sorry.
November 26, 2008 at 8:48 am
Prior to 2005? Suffered.
There really wasn't an easy way to do it back then. The best approach was to have a natural key on the table then you wouldn't have...
November 26, 2008 at 8:08 am
You mean like "You're right and I'm wrong" as I just recently posted?
😛
November 26, 2008 at 8:03 am
Sorry, you're right. It's leakage from the old days. SCOPE_IDENTITY specifically deals well with triggers. My bad.
I still like the OUTPUT approach becuase it works the same with one row...
November 26, 2008 at 7:44 am
It doesn't work on 2005. Period. Full Stop.
It doesn't work terribly well on 2008.
Get Red Gate SQL Prompt. It works great on both and in Visual Studio (although it's a...
November 26, 2008 at 6:50 am
I assume you already updated the statistics with a full scan?
After doing that... Can you post the execution plan & query? Some functions that worked well enough in 2k don't...
November 26, 2008 at 6:47 am
Keith West (11/25/2008)
I'm not sure if this is the correct forum for this but here goes.
As good a forum as any. This is a huge topic, but I'll try to...
November 26, 2008 at 6:43 am
If you're scripting database creation, two areas are going to cause you problems in terms of time. First, however big the database you create determines, on a given system, how...
November 26, 2008 at 6:22 am
This sort of implies that you're only using the GUI to create tables. You can change the schema for the object created in the gui by accessing the properties window,...
November 26, 2008 at 5:43 am
It really depends on your business needs. If you need to keep a history of the individual call itself, your method won't work. If all you care about is the...
November 26, 2008 at 5:41 am
Viewing 15 posts - 19,216 through 19,230 (of 22,202 total)