Tagged Questions
Sybase is a commercial relational database management system owned by SAP
35
votes
6answers
20k views
What is the difference between UNION and UNION ALL
What is the difference between UNION and UNION ALL.
9
votes
16answers
18k views
Difference between drop table and truncate table?
I have some tables that I build as a part of my report rollup. I don't need them afterwards at all. Someone mentioned to truncate them as it would be faster.
8
votes
7answers
2k views
How can I “merge”, “flatten” or “pivot” results from a query which returns multiple rows into a single result?
I have a simple query over a table, which returns results like the following:
id id_type id_ref
2702 5 31
2702 16 14
2702 17 3
2702 40 1
2703 23 4
2703 23 ...
7
votes
4answers
20k views
How to convert a string to a date in sybase
I need to specify a date value in a sybase where clause. For example:
select *
from data
where dateVal < [THE DATE]
6
votes
2answers
110 views
Setting the Encryption key for the DataBase (Sybase Unwired Platform)
At the moment I am able to set the encryption key for my local database by doing the following:
if(![MyDemo_MyDemoDB databaseExists]){
SUPConnectionProfile* cp = [MyDemo_MyDemoDB
...
6
votes
3answers
209 views
How do I capture this warning message when the query is blocking?
When I do a query with isql I get the following message and the query blocks.
The transaction log in database foo is almost full. Your transaction is being suspended until space is made available ...
6
votes
9answers
5k views
Improving performance of Sql Delete
We have a query to remove some rows from the table based on an id field (primary key). It is a pretty straightforward query:
delete all from OUR_TABLE where ID in (123, 345, ...)
The problem is ...
6
votes
16answers
4k views
What's a good front end query tool for SYBASE?
Is there a SQL Management Studio-like sql editor for SYBASE?
I can't imagine people work with the text editor -- makes me want to pull my teeth out.
I couldn't get SQL Management Studio to work with ...
6
votes
9answers
2k views
Any good SQL Anywhere database schema comparison tools?
Are there any good database schema comparison tools out there that support Sybase SQL Anywhere version 10? I've seen a litany of them for SQL Server, a few for MySQL and Oracle, but nothing that ...
5
votes
1answer
97 views
How to connect mysql database and Sybase Database in one connection string in Perl?
I have connected both database, but used two connection string. Is there any possible to connect by using one connection string for both.
5
votes
3answers
172 views
List of aggregate functions
Is there a way to fetch list of aggregate functions supported by a dbms using jdbc metadata or running any dbms specific query?
Thanks in advance
5
votes
3answers
466 views
get the columns of a Temp table in sybase
Is there a way to get the list of columns of a temporary table in sybase?
suppose I have a table called #mytable
select count (*) from tempdb..#mytable
return 145 to say there are 145 rows in this ...
5
votes
3answers
1k views
SQL query for “concatenate on join”
NOTE: I'm still looking for an answer that I can accept.
Hi,
I'm using a Sybase ASE database.
I have two tables that look like:
Table Shops:
---------------------
| ShopName | ShopID |
...
5
votes
1answer
5k views
How do I look at column metadata in Sybase?
I have a list of columns a co-worker has given to me, but these columns reside in different tables in the DB. Is there some kind of tool in Sybase where I can query the table a column belongs to?
...
5
votes
1answer
1k views
Why doesn't DBD::Sybase's Makefile.PL find freetds?
I'm having trouble trying to install DBD::Sybase on Redhat. Perl version is 5.8.8 and it is the 64-bit version. When I set the SYBASE env variable to the freetds libs in /usr (the rpm puts libtds in ...
5
votes
5answers
14k views
How can I get data from a stored procedure into a temp table?
Am working on sybase ASE 15. Looking for something like this
Select * into #tmp exec my_stp;
my_stp returns 10 data rows with two columns in each row.
5
votes
4answers
9k views
Oracle equivalent to SQL Server/Sybase DateDiff
We are now using NHibernate to connect to different database base on where our software is installed. So I am porting many SQL Procedures to Oracle.
SQL Server has a nice function called DateDiff ...
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
...
4
votes
2answers
58 views
How can I build the Python Sybase module on Windows?
I'm trying to build the python-sybase module on Cygwin, but it doesn't seem to work. It seems to start compiling, then it starts throwing the following errors:
$ python setup.py install
running ...
4
votes
3answers
175 views
Sybase TEXT vs Oracle CLOB performance
We're in the process of converting our database from Sybase to Oracle and we've hit a performance problem. In Sybase, we had a TEXT field and replaced it with a CLOB in Oracle.
This is how we ...
4
votes
4answers
325 views
What does value returned from 'IDbCommand.ExecuteNonQuery' represent?
I am using ADO.net to call stored procedures to perform insertions into a Sybase database, and I want to include unit tests to ensure that the insert calls are working correctly.
According to the ...
4
votes
1answer
415 views
SQL/Sybase: SELECT … GROUP BY … NOT HAVING?
col1 col2
A bear
A dog
A cat
B bear
B dog
B cat
C dog
C cat
D bear
D dog
D cat
E bear
E dog
E cat
F dog
F cat
if I ...
4
votes
2answers
728 views
Sybase IN and OUT parameters
I'm going nuts about how the Sybase JDBC driver handles stored procedures with mixed IN and OUT parameters. Check out this simple stored procedure:
CREATE OR REPLACE PROCEDURE p (IN i1 INT, OUT o1 ...
4
votes
1answer
496 views
Free tool to migrate from Sybase SQL Anywhere 12 to MS SQL Server 2008
I need to recover data from a Sybase SQL Anywhere 12 (I have an *.db file) into MS SQL Server 2008.
I installed the SQL Anywhere 12 Developer kit and that allowed me to run the database and ...
4
votes
4answers
585 views
Does sybase 15 support the bcp api in java?
A long time ago I figured out that bcp is just a little C program that calls the special bit of the sybase client api to do mass data moving into the database. It lies cheats and steals and skips ...
4
votes
2answers
314 views
Does where 1=2 get called for every row?
I have some sprocs that need a temp table. In order not to hardcode the column types (which are varchar with some length) so I don't have to change the declarations when the reference table schema ...
4
votes
3answers
107 views
SQL: CASE and selecting multiple COLUMS
How can I do this: Based on the select Case below I want to show TWO separate columns within one WHEN?
The two lines below which are commented is what something I would like to have and I am sure it ...
4
votes
2answers
332 views
4
votes
2answers
577 views
Column names in dynamically generated datawindows
When I dynamically create a datastore using SyntaxFromSQL (in order to generate datastore source code, based on a SQL SELECT statement), with syntax like this
string ERRORS, sql_syntax, dwsyntax_str, ...
4
votes
1answer
330 views
How *does* Powerbuilder POST work?
Unfortunately searching for 'Sybase Post' doesn't get me the answers I'm looking for.
I want to know what the actual function is of POST
As in
.. procedure lala
POST procedure1()
procedure2()
I'm ...
4
votes
1answer
2k views
SQL min / max group by question
I have something like the following data structure:
Category StartDateTime EndDateTime
===============================================
1 12/1/2009 12:00 12/1/2009 12:12
1 ...
4
votes
3answers
1k views
How can I manipulate a Sybase datetime string in Perl?
I have a datetime field in a Sybase table, and need to use it in Perl for doing some calculations (differences to make sure I'm picking up the records that are at least 'n' mins apart). Now, if I ...
4
votes
5answers
10k views
SQL Parent/Child recursive call or union?
I can't seem to find a relevant example out there.
I'm trying to return a sub-set of a table, and for each row in that table, I want to check how many children it has, and return that number as part ...
4
votes
2answers
930 views
How can I get a list of indices on a SQL table using Perl?
How can I get a list of the indices on a table in my sybase database using Perl? The goal is to "copy" all the indices from a table to a nearly identical table.
Is ...
4
votes
5answers
5k views
How do you identify the triggers associated with a table in a sybase database?
I am using SQL Advantage and need to know what the SQL is to identify the triggers associated with a table. I don't have the option to use another tool so the good old fashioned SQL solution is the ...
4
votes
6answers
311 views
How best can I isolate my application from an unreliable database?
I have a Java SOAP data service which sits on top of a Sybase database which, for reasons out of my control, has unreliable performance. The database is part of a vendor package which has been ...
4
votes
4answers
2k views
Avoiding TSQL Data-conversion errors
I think this is best asked in the form of a simple example. The following chunk of SQL causes a "DB-Library Error:20049 Severity:4 Message:Data-conversion resulted in overflow" message, but how come? ...
3
votes
3answers
103 views
How to simulate GREATEST() in Sybase ASE?
Most databases have something like a GREATEST function, which can be useful some times. At least these databases don't have such a function:
Derby
SQL Server
Sybase ASE
Sybase SQL Anywhere
For SQL ...
3
votes
2answers
32 views
Split column into two columns and copy over values
I have a Sybase table with a column storing char(6) values. I would like to drop this column and create two char(3) columns, copying over the first three chars of the original column to column 1 and ...
3
votes
1answer
76 views
Sybase control center iphone simulator registration failure
I have created an application in sybase envioronment for iOS application and I deployed the same in Mac OS.
I registered a new device in Sybase Control Center device users, and the same configuration ...
3
votes
1answer
84 views
Sybase 12.5-BDE-ADO “where myColumn=null” failure
We have an old application that reads in SQL text files and sends them to Sybase ASE 12.51. Our legacy app was written in Delphi 5 and is using the BDE TQuery component for this process and accessing ...
3
votes
1answer
94 views
Application taking too much space in RAM causing the app to close
I'm having a problem with the app I'm building the RAM of the BB 9800 is too small.
I have a html5 application that I use in IOS and Blackberry.
I'm using phonegap plugin to pull data form server by ...
3
votes
2answers
117 views
Calling Sybase Adaptive Server Enterprise's “sp_help” from JDBC
In order to query the database meta data in Sybase ASE, I found this relevant answer (not the accepted one), to be ideal:
From a Sybase Database, how I can get table description ( field names and ...
3
votes
2answers
214 views
Common Table Expression in Sub-Query
I would request for help in understanding which all RDBMS from Oracle, DB2, Sybase support a common table expression (CTE) in a sub-query. I am aware that PostgreSQL does while MS SQL Server does ...
3
votes
1answer
329 views
SELECT all of a user-defined datatype/structure
Is there a shortcut to selecting all the components of a user-defined datatype/structure in SYBASE 10?
So if Resrv is a field based on a user-defined datatype/structure, something like:
SELECT ...
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
2answers
133 views
Is there a way to communicate application context to a DB connection in non-Sybase DB servers (similar to set_appcontext in Sybase)?
Sybase has a way for the application to communicate "context" data - such as application's end-user name, etc.. - to the database connection session. Context data is basically just a set of key-value ...
3
votes
3answers
605 views
Best way to optimize SQL for Pivoting a table in Sybase Ase
I am looking to optimize the following SQL statement that is creating a Pivoted Result set from a Historical Table. This may already be the most per-formant way of doing it but I keep thinking that ...
3
votes
2answers
590 views
ct_results() and ct_cmd_drop() error with Sybase::CTlib
I'm using Sybase::CTlib to query a Sybase server. However when I execute the following:
while( $dbr->ct_results($restype) == CS_SUCCEED ) {
if( $restype == CS_CMD_FAIL ) {
warn "Update ...
3
votes
4answers
2k views
Sybase: get list of stored procedures using a particular table
I have 500 stored procedures in a Sybase database. Using SQL, can I get list of all stored procedures that are using a particular table say tbl_books?