Viewing 15 posts - 11,926 through 11,940 (of 18,923 total)
Why am I included in this???
Like I would ever do something like that
.
!
September 5, 2006 at 5:03 am
Thanx. Still about another 1000 to recatch steve and Antares
.
September 4, 2006 at 9:49 pm
No I understant why you say it's almost linear... quite a lot more than a simple select in that operation
.
September 4, 2006 at 3:51 pm
create table #demo (PK primary key clustered, Value int not null, RunningTotal int not null)
Insert into #demo (PK, value, RunningTotal) Select PK, value, 0 as runningTotal from dbo.BaseTable
UPDATE #demo....
Select PK, RunningTotal...
September 4, 2006 at 3:43 pm
Ain't that update based on the clustered index??? I already wrote that for something else and I was always wary that something could go wrong if I didn't have exclusive...
September 4, 2006 at 3:27 pm
Ok I confess I wrote a few of those... Can't wait for the other solution now
.
September 4, 2006 at 3:13 pm
What's the difference between a triangular and half cross join...
and when the heck do I need to use that !?!? ![]()
September 4, 2006 at 12:01 pm
I'm not under any deadline ![]()
.
September 4, 2006 at 11:49 am
I need to know way more about the process and the data before deciding on indexes and keys... However it is considered a best practice to have a clustered index,...
September 4, 2006 at 11:40 am
I personally think that we put way too much imoprtance on the looks in society in general... so why should it be any different there... Would the interviewer really care...
September 4, 2006 at 11:37 am
I'm sure it can be a problem... but without seeing the data (both inserted and in the table) and the plan it's hard to make an accurate diagnosis.
Here's how to produce...
September 4, 2006 at 11:17 am
I have to remember that one
... " particular case (no pun intended)"
September 4, 2006 at 11:11 am
You need something like this :
CREATE
TRIGGER dbo.trTableName_F_U ON dbo.TableName
FOR
September 4, 2006 at 11:08 am
Viewing 15 posts - 11,926 through 11,940 (of 18,923 total)