Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Update Sybase table with SAS/SQL

Status
Not open for further replies.

6656

Programmer
Nov 5, 2002
104
US
How to solve below error message:
"ERROR: MEMBER level locking for UPDATE or RANDOM access is not supported by the engine."

Message from below program code:

libname mytest SYBASE user='abc' password=xxxxx
sever='xyz' database='mydbs';
porc sql;
update mytest.sybtable
set data_var_flag =1
where year='2002';
quit;

 
Self Solution: using execute statement.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top