Viewing 15 posts - 4,231 through 4,245 (of 5,103 total)
Edwar,
On SQL Server 2005 they heard your prayers and now the cascade option allows for NULL replacement. S February 10, 2005 at 9:48 am
Hans,
I do Agree with you that it sounds like totally unreasonable design, I just tried to show that it is posible to do it. I don't know what is the...
February 10, 2005 at 9:25 am
>> I really hope you gave an example of such a trigger, and that you did not really have the result in mind, or else you'll be in for a...
February 10, 2005 at 8:40 am
This is a classic problem what method to use the flag or the LockedTable
For scalability purposes I would recommend you use the Locks...
February 9, 2005 at 4:10 pm
I think it can be done, Just Haven't tried. But I would recommend to disable the NESTED Trigger option (which it is by default). Therefore the rows inserted in the...
February 9, 2005 at 3:58 pm
JT
if looping is performing an expensive select, cursors are a great alternative. locking can exists while you walkthrough the cursor but if it allows you to take one pass only...
February 9, 2005 at 3:50 pm
sys* tables in tempdb are row-locked in Sql2K
what about NORMAL sys* tables
select * into #Tbl1 from MYTABLE <-- Effectively lock the schema on...
February 9, 2005 at 3:50 pm
create table #Tbl1
( ItemNo char(6), ItemInfo char(60) )
Insert into #Tbl1 (ItemNo, ItemInfo) Values('3000','FL 01 0 Ý 00000000 00V ')
Insert into #Tbl1 (ItemNo, ItemInfo) Values('3001','FL 01 0 Ý 00000000 00V ...
February 9, 2005 at 3:31 pm
What are you talking about?
I don't have a clue on what the model is supposed to be because is not mine!!!
The root of the problem that the original poster has...
February 9, 2005 at 1:39 pm
The model was just to show graphically the cycle to the poster it was not meant to be a full blown ER diagram. if you look at is is all...
February 9, 2005 at 10:50 am
It is NOT true. "Select Into" is a non logged operation therefore extremely fast. When you have a table already created you have no choice but to use insert into...
February 9, 2005 at 10:43 am
No problem
I have seen this more than once and I was forced to look for the MSBPA to show some of my...
February 8, 2005 at 1:12 pm
Best Pricatices dictate that EVERY FIELD in queries where there are more than one table or view should be qualified with table name like: tblname.fldName.
Now, Do that on you query...
February 8, 2005 at 1:00 pm
DEV Employees
------------ ------------
| DevID | ----------------------------------------| EmpID |
|------------ / ------------
| EmpID |/ -| RoomID |
|------------ / ------------
February 8, 2005 at 12:47 pm
I don't see any place where the code checks for drive mappings. And you know why? Drive mappings belong to USER PROFILES which SERVICES (like SQL SERVER ) have no knowledge...
February 8, 2005 at 11:09 am
Viewing 15 posts - 4,231 through 4,245 (of 5,103 total)