Viewing 15 posts - 19,711 through 19,725 (of 22,202 total)
You can make the foreign key non-null, which will force you to have a value, and you can put a unique constraint on the foreign key, making it so only...
August 14, 2008 at 8:10 am
There's do and there's juitsu. The "way" or do study in martial arts is a spiritual excercise. The juitsu or "art" is martial in it's intent. Meaning, we're not so...
August 14, 2008 at 8:08 am
Well, to quote Adam from Myth Busters, "That's your problem, right there."
Relational data storage more or less requires relationships and those are defined through constraints on the tables. Probably, even...
August 14, 2008 at 6:07 am
You also may have columns inside tables with different collation settings. Check that.
August 14, 2008 at 5:45 am
There's not enough information to answer this question fully. Yes, you need to use JOIN's to put the tables together, but what columns constitute the primary and foreign keys that...
August 14, 2008 at 5:44 am
Rather than changing the locking mechanisms everywhere, I'd strongly suggest looking at the execution plans of the query and the indexes on your tables. Resolve the problems at the root,...
August 14, 2008 at 5:40 am
If my understanding of what you're trying to do is correct, then yeah, I think that's the right code. But please, test it and verify it. Don't simply take my...
August 14, 2008 at 5:35 am
I know Steve emphasized hitting pads as a way to take off the stress, but I don't mind suggesting, if you don't object to a few bruises (and jambed fingers...
August 14, 2008 at 5:33 am
If I'm reading this correctly, something like this:
SELECT wcadmin.WTDocumentMaster.WTDocumentNumber AS NUMBER, wcadmin.WTdocument.nameB2folderingInfo AS FOLDER,
...
August 13, 2008 at 1:18 pm
Something along these lines should work:
SELECT *
FROM TableA a
WHERE a.Id = (SELECT TOP(1) a2.Id
...
August 13, 2008 at 12:50 pm
Are these multi-statement table valued functions? If so, understand that this type of function has not statistics. This means the optimizer treats them like a table that returns one row....
August 13, 2008 at 12:16 pm
If the first guy through creates a plan that uses a scan, unless something fires a recompile of the procedure or the plan ages out of cache, it's going to...
August 13, 2008 at 11:36 am
You'll want to rebuild all your indexes and update the space usages after you move it.
But before you move it, use the Upgrade Advisor as mentioned above. There may...
August 13, 2008 at 11:34 am
I can't help you on the rogue DBA topic. Hunt 'em down & hurt 'em may be your only option.
As to the rest, why not manage the database code in...
August 13, 2008 at 11:18 am
Don't worry about it. There's always more to learn, for everyone. Speaking of which, I need to download 2008 and get started learning new stuff.
August 13, 2008 at 9:06 am
Viewing 15 posts - 19,711 through 19,725 (of 22,202 total)