Tagged Questions
5
votes
11answers
12k views
how to pass a comma separated list to a stored procedure?
So I have a Sybase stored proc that takes 1 parameter that's a comma separated list of strings and runs a query with in in an IN() clause:
CREATE PROCEDURE getSomething @keyList varchar(4096)
AS
...
0
votes
1answer
156 views
Optimal Sybase ASE Table Locking Scheme a for Reference Code Table
I have a reference code table that will only be read from during normal use, and it aught to be only updated for product changes (monthly).
What table locking should I be using in the create table ...