Viewing 15 posts - 4,231 through 4,245 (of 5,103 total)
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...
* Noel
>> 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...
* Noel
This is a classic problem what method to use the flag or the LockedTable ![]()
For scalability purposes I would recommend you use the Locks...
* Noel
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...
* Noel
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...
* Noel
sys* tables in tempdb are row-locked in Sql2K
what about NORMAL sys* tables ![]()
select * into #Tbl1 from MYTABLE <-- Effectively lock the schema on...
* Noel
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 ...
* Noel
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...
* Noel
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...
* Noel
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...
* Noel
No problem ![]()
I have seen this more than once and I was forced to look for the MSBPA to show some of my...
* Noel
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...
* Noel
DEV Employees
------------ ------------
| DevID | ----------------------------------------| EmpID |
|------------ / ------------
| EmpID |/ -| RoomID |
|------------ / ------------
* Noel
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...
* Noel
Viewing 15 posts - 4,231 through 4,245 (of 5,103 total)