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
...
3
votes
2answers
104 views
Sybase Features
Does anybody know if Common Table Expressions and User-defined functions (not from Java) are supported on Sybase 12.5? I'm trying but could not seem to make these work. Thanks guys.
3
votes
3answers
545 views
Importing Python modules without installing - Sybase ASE
I need to use the Sybase Python module but our SA's won't install because it's not in the repo's. I've downloaded it and placed it on the box and would just like to 'import' or 'include' the module ...
3
votes
3answers
3k views
Case insensitive search on Sybase
I have been sick and tired Googling the solution for doing case-insensitive search on Sybase ASE (Sybase data/column names are case sensitive). The Sybase documentation proudly says that there is only ...
1
vote
2answers
50 views
GetDeleteCommand DataAdapter with a temporary table in Sybase
Porting MSSQL Application to Sybase (ASE 15.0), and experiencing a problem when I call GetDeleteCommand.
The error reported is:
Dynamic SQL generation for the DeleteCommand is not supported ...
1
vote
1answer
59 views
ASE 15.x Index Statistics in minor attributes
If we create an index like this:
create nonclustered index idx_person on person(gender, name)
in ASE 12.5, there'll be created statistics (more precisely an histogram) for the major atribute ...
1
vote
1answer
359 views
Where can I get 64 bit OLEDB and/or ADO.Net drivers for Sybase ASE?
I'm new to Sybase and so far it's a monumental pain just to connect to it! Where in the world can I get 64 bit drivers for Sybase ASE 15 so that I can connect from my 64 bit SQL 2008? Our Sybase ...
1
vote
4answers
2k views
Sybase 15 performance issue
I am working with Sybase 15 in my application and there is performance issue related with nested joins. I have stored procedure which selects 2 columns from 2 tables and compares equalities of over 10 ...
1
vote
2answers
232 views
Quality of Sybase ASE support in Delphi
I have Delphi Professional 2007 and 2009 and was thinking of upgrading either or both to Enterprise due to a new project that requires me to interface to a Sybase ASE database. I did some web ...
0
votes
0answers
169 views
Problem in executing Sybase stored procedure in vbscript
I am executing a sybase stored procedure in VB Script to export the data from the SP to an excel file. While executing the SP in ASE ISQL gives me exact result but while executing the SP in VBScript ...
0
votes
1answer
193 views
Setting HOSTNAME when connecting to Sybase from PHP
I have an Apache server running PHP 5.3.3. Our sybase ASE servers use HOSTNAME on connect for rudimentary ID and filtering - make sure prod hosts connect to prod, etc.
Is there any way to have ...
0
votes
1answer
158 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 ...
0
votes
0answers
150 views
Sybase Adaptive Server Anywhere 6.0 “Not Enough Memory” error
I have a client who runs a program that has a back-end sybase database. The database server is Adaptive Server Anywhere 6.0. It has run on their windows NT server for 12+ years or longer. Their server ...
0
votes
2answers
181 views
How to determine how much disc space a table is using in ASE
I have a table which I think might be better off if it uses different data types for many of the columns. I wish to design some tests to determine the pay off in disc space if these columns are ...