Viewing 15 posts - 21,046 through 21,060 (of 22,184 total)
And, check your connection settings. See if the TSQL connection & the ADO connection are the same.
February 7, 2008 at 7:42 pm
Does your table variable have a primary key and is that used to join to the other tables? If not, that's going to be a performance problem right there since...
February 7, 2008 at 1:29 pm
I just remembered. There's this great book by Craig Mullins called Database Administration. It doesn't dwell on technology, but goes over general concepts quite well. I'd recommend that one too.
February 7, 2008 at 12:19 pm
True, but have you seen the Suite license cost per seat? We'll be adding procedures for the developers for some time to come.
February 7, 2008 at 12:17 pm
Oh yeah, you can have the project deploy or drop objects, yes. It's getting objects into the project (or out) that is the problem. My developers all have the Developers...
February 7, 2008 at 11:34 am
Database design and indexing design is a tough topic and it takes time to get it right. Two books that you might want to add to your library are Inside...
February 7, 2008 at 11:31 am
Nope. The one issue that we've had, and believe me the developers have howled, is that they can not simply add procedures (or drop them either). They have to let...
February 7, 2008 at 8:40 am
To capture the rows moved have a look at the OUTPUT clause.
February 7, 2008 at 7:01 am
It's simply scanning an index along the logical chain of the index instead of along the storage chain, an allocation scan. This is usually from an ORDER BY, but can...
February 7, 2008 at 5:59 am
I'm pretty sure I'm old fashioned, but I still use OUTPUT parameters in some situations. Let's say you have a situation where the application normally creates a row in a...
February 7, 2008 at 5:44 am
Oops. Hit the "Post Reply" button too soon.
And no, this isn't a problem, depending on how you apply it. Multiple varchar fields of length 3000 would be a really poor...
February 6, 2008 at 9:24 am
You mean "compound" primary keys right? Because you can only have one primary key per table.
Although, you can have multiple unique constraints and refer to those as "alternate" keys...
February 6, 2008 at 9:21 am
Nope. That isn't possible.
What you can do, although it is VERY strongly not recommended, is pass the table name in as a string and then use dynamic TSQL to use...
February 6, 2008 at 8:45 am
Just remember that Books Online (BOL), the doucmentation installed with SQL Server, is your best friend in the world. Don't be a afraid to open it up and read up...
February 6, 2008 at 8:41 am
Viewing 15 posts - 21,046 through 21,060 (of 22,184 total)