Viewing 15 posts - 331 through 345 (of 5,103 total)
jminette (2/27/2009)
Ok, there's not one....but if there were I think I'd like to be a SQL Proctologist. :hehe:Hey, it's Friday...this is the best I got.
That's funny!
March 5, 2009 at 4:03 pm
Jerry Sommerville (3/5/2009)
March 5, 2009 at 3:43 pm
The only thing i'm trying to avoid is 2 users saving an event at the very same moment with the same OrgEventId.
Can you just create a Unique Constraint ?
March 5, 2009 at 3:38 pm
Does this helps:
declare @t table(acc int, CustName varchar(100))
insert into @t (acc, CustName) VALUES (1234, 'Joe Smith')
insert into @t (acc, CustName) VALUES (1234, 'Mary Smith')
insert into @t...
March 5, 2009 at 3:28 pm
Bob, How does it compares with Steve's Solution ?
March 5, 2009 at 3:16 pm
Mohit (3/5/2009)
After I finish my Part 2 for Denormalization Article ..
I think I know what I am going to Rant about next maybe I'll just rant on...
March 5, 2009 at 3:03 pm
Mohit (3/5/2009)
March 5, 2009 at 2:42 pm
SQL Dude (3/5/2009)
Thanks to you both!RSCI? I'm not mentally processing the abbreviation
OOps sorry!
RCSI = Read Committed Snapshot Isolation
You set it with:
ALTER DATABASE [dbname] SET READ_COMMITTED_SNAPSHOT ON;
Note: You will need...
March 5, 2009 at 2:30 pm
florian.reischl (3/5/2009)
Wow, that's some news there! How can you not like identity columns? I tell database developpers to put 1 on each and every table in the database. Only in...
March 5, 2009 at 2:22 pm
Jean-François Bergeron (3/5/2009)
florian.reischl (3/5/2009)
I for my own do not like IDENTITY columns.
Wow, that's some news there! How can you not like identity columns? I tell database developpers to put 1...
March 5, 2009 at 2:07 pm
March 5, 2009 at 2:01 pm
SQL Dude (3/5/2009)
March 5, 2009 at 1:48 pm
Note that there is also one exception that is related with the "SubscriptionStreams".
Which introduces more uncertainty on the predictability of the order of the transactions... I believe this was...
March 5, 2009 at 1:46 pm
... all queries will contain month and provider in the where clause.
Then the combination makes a good clustered index !
March 5, 2009 at 1:39 pm
Viewing 15 posts - 331 through 345 (of 5,103 total)