Viewing 15 posts - 3,901 through 3,915 (of 5,394 total)
Alvin Ramard (9/14/2010)
GilaMonster (9/14/2010)
Anyone feel like arguing database design?http://www.sqlservercentral.com/Forums/Topic981529-392-1.aspx
From that thread:
shield_21 (9/14/2010)
GilaMonster (9/12/2010)
What's wrong with a properly normalised database design?I think using XML datatype model would be more efficient..
Nope....
September 14, 2010 at 9:10 am
Stefan Krzywicki (9/13/2010)
I was thinking...
September 13, 2010 at 8:28 am
This should work:
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[TableName]') AND type in (N'U'))
BEGIN
IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id =...
September 10, 2010 at 10:14 am
I suggest that you:
1) Post your table scripts, as described in the article linked in my signature line
2) Post your sample data in a more consumable format (INSERT INTO script)
3)...
September 10, 2010 at 10:09 am
Lowell (9/10/2010)
you have to use dynamic SQL after the IF EXISTS test.
that goes the same for procedure/ function/...
September 10, 2010 at 9:52 am
SeanLange (9/10/2010)
Not sure why that wouldn't work.
Because some statements have to be come first in a batch. Create trigger is one of them.
September 10, 2010 at 9:51 am
You could use dynamic sql:
IF someCondition
BEGIN
EXEC('CREATE TRIGGER ....')
END
September 10, 2010 at 9:43 am
Try rebuilding your clustered index on the table, that should help.
September 9, 2010 at 4:41 am
Lynn Pettis (9/8/2010)
Still don't have access to a even a sandbox to start playing with Oracle.
Install one. It's quite easy, even for a poor noob like me.
I got Sun VirtualBox...
September 9, 2010 at 1:14 am
GilaMonster (9/8/2010)
Now here's an interesting question...Which is going to reach 20 000 posts first, me or the Thread?
Don't know. What do bookmakers think? 😛
September 8, 2010 at 8:09 am
I think you'd better start a new thread for this question.
Unfortunately that's a very little information to work on, I don't think I can help you.
September 8, 2010 at 8:06 am
Thank you, Paul. This is one of the topics I always wanted to investigate deeper, but never did.
I look forward to reading the next parts.
I will try to avoid...
September 8, 2010 at 1:34 am
Steve Jones - Editor (9/3/2010)
Relax, ultimately you want to be professional, but it's a job. Give you opinion, document, go with the crowd if...
September 3, 2010 at 9:17 am
Steve Jones - Editor (9/3/2010)
I'd implement the FK, document my issues, and pull it back out when he complained about performance.
Well, our argument went a bit far from where it...
September 3, 2010 at 8:53 am
Viewing 15 posts - 3,901 through 3,915 (of 5,394 total)