Tagged Questions

6
votes
10answers
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
167 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 ...