Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Rowlock with inner join
Message
 
 
To
26/10/2007 05:08:20
Issam Mansour
Jordan Business Machines
Amman, Jordan
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Environment versions
SQL Server:
SQL Server 2005
Miscellaneous
Thread ID:
01263962
Message ID:
01264035
Views:
11
First, teh ROWLOCK and XLOCK hints cannot be used together.
The multiple hints should be used as infollowing example
... FROM aTable WITH (TABLOCK, HOLDLOCK) ...
See BOL for details.


>
>I am trying to issue the following statement with to lock a record with inner join but I have an error:-
>
>SELECT amaster.acctno,bmaster.balance,bmaster.YEAR
>FROM amaster [ROWLOCK] with (Xlock)
> INNER JOIN bmaster
> ON amaster.acctno = bmaster.acctno
>WHERE (bmaster.YEAR = 2007)
>ORDER BY amaster.acctno
>
>The error:
>Msg 4104, Level 16, State 1, Line 1
>The multi-part identifier "amaster.acctno" could not be bound.
>
>Thanks
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform