Tagged Questions

Sybase ASE or Adaptive Server Enterprise is an enterprise RDBMS which has been developed by Sybase Inc (now an SAP company). Sybase ASE is available for various platforms like Unix and Windows. TSQL is the database programming language used by Sybase ASE.

learn more… | top users | synonyms

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 ...
5
votes
3answers
136 views

SQL find identical group

Given a table like: id key val ---- ---- ----- bob hair red bob eyes green And another table like: id key val ---- ---- ----- fred hair red fred eyes green fred shoe 42 ...
4
votes
5answers
1k views

Upsert (update or insert) in Sybase ASE?

I'm writing an application to move data from Oracle to Sybase and need to perform update / insert operations. In Oracle, I'd use MERGE INTO, but it doesn't seem to be available in Sybase (not in ASE, ...
3
votes
3answers
106 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
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
3answers
609 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
4answers
716 views

How to do a full outer join without having full outer join available

Last week I was surprised to find out that sybase 12 doesn't support full outer joins. But it occurred to me that a full outer join should be the same as a left outer join unioned with a right outer ...
3
votes
5answers
8k views

Find Sybase stored procedure in db given a text string that appears in the proc

How do I find a stored procedure in a Sybase database given a text string that appears somewhere in the proc? I want to see if any other proc in the db has similar logic to the one I'm looking at, and ...
2
votes
1answer
19 views

installing Sybase module for python

I'm having some trouble installing the Sybase python module. I've downloaded the zip file, unzipped and run python setup.py install in that directory. However, I get this error; Directory ...
2
votes
1answer
24 views

MYSQL equivalent to Sybase ASE command?

Is there a equivalent way to see the execution plans from MYSQL like the set showplan on command in Sybase ASE?
2
votes
1answer
167 views

How can I use Dapper's strongly-typed query parameters with Sybase ASE?

Dapper's can pass query parameters as anonymous objects, and supports any ADO.NET data provider. However, when running the following query against the Sybase 15 ADO.NET drivers: using (var connection ...
2
votes
1answer
79 views

Updating multiple table in Sybase

Got a requirement to update certain fields of two tables (which got 60+ millions of rows) and I'm doing the UPDATE in a loop. I'd like to update two tables in a single UPDATE (as its difficult to ...
2
votes
5answers
419 views

Sybase Drivers for Delphi 2010

We are migrating from Delphi 6 to Delphi 2010,earlier we were using BDE engine to connect to Sybase Database from Delphi 6. We found out that Delphi 2010 does not support BDE. We are trying with ...
2
votes
1answer
268 views

Large number of open connections to database crashes the application

In my web service, i connect to Sybase database. I have list of Doctors and each doctor can be associated with number of Hospitals. I need to update a few details on every Hospital with which a ...
2
votes
3answers
176 views

Is combining (result sets) of “two queries with aggregate and group by” possible?

1 Select id,count(*) as totalX FROM my_table WHERE x_factor = 1 GROUP BY id ResultSet: id totalX --------- -------------- 9 34 10 6 11 ...
2
votes
6answers
2k views

sybase - fails to use index unless string is hard-coded

I'm using Sybase 12.5.3 (ASE); I'm new to Sybase though I've worked with MSSQL pretty extensively. I'm running into a scenario where a stored procedure is really very slow. I've traced the issue to a ...
2
votes
5answers
1k views

Linq 2 Sybase ASE database? What are the options?

I have a need to query an existing Sybase ASE database and would like to use Linq syntax for my data retrival. I don't need write access, nor do I need the full set of Linq operators, just Select(), ...
2
votes
2answers
620 views

Introspecting DEFAULT values and computed columns in Sybase ASE

For a Perl library that dumps Sybase schemas for DBIx::Class (::Schema::Loader), I need to be able to introspect DEFAULTs and computed columns. Suppose we have: create table bar ( id INTEGER ...
1
vote
1answer
29 views

Need a cumulative field in a table

Database: Sybase ASE 15.0.3 Tables: authors(int author_id, varchar(20) author_name) books(int author_id,int number_of_pages) I need to add a new field to the table "authors" for ...
1
vote
1answer
32 views

Sybase ASE and functions parameters?

Is it possible to create a function that might be called with a different number of parameters (minimum two). So, two parameters are always present and the others are optional.
1
vote
0answers
34 views

Sybase ASE create foreign key constraint ignoring case

I am trying to get same functionality out of ASE 15.5 that exists in MSSQL 2008 in terms of case insensitivity. Sort order has to remain binary for the application to work in standard mode, however ...
1
vote
1answer
48 views

Discover primary / unique keys in Sybase ASE: Regular Expression and PHP

I get this info from sp_helpconstraint iyas_grandtest. constraint_name definition iyas_grand_2317208971 PRIMARY KEY INDEX ( id) : CLUSTERED iyas_grand_2317208972 UNIQUE INDEX ( unik) : ...
1
vote
2answers
41 views

How do I get column type from table? - Sybase

I have this code: select a.id as tableid, a.name as tableName, b.name as columnName, b.status as columnStatus, b.type as columnType from sysobjects a LEFT JOIN syscolumns b ...
1
vote
1answer
26 views

What would cause a compressed database dump to be broken into two stacks (or segments)?

I've been trying determine the uncompressed size of a compressed database dump. I've been able to use the lsize in the dump header information to do this. In my testing I have created an empty test ...
1
vote
1answer
26 views

Getting into deadlock while using rowcount delete query

Set rowcount 50000 declare @i int select @i = 1 WHILE ( @i > 0 ) BEGIN DELETE table1 FROM table1 (index index1) WHERE HIST_Timestamp < '2011/11/26' select @i = ...
1
vote
1answer
60 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
124 views

Discover primary / unique keys in Sybase ASE

In Sybase ASE, I would like to discover all primary and unique keys. I want to do something similar to what is explained in this answer: Identifying Sybase tables, fields, keys, constraints But ...
1
vote
1answer
62 views

Decrypt DSN password ENP to PWD

I have a file dsn containing encrypted password. I need to get the decrypted password and perform the steps). We are not storing password anywhere else. Is there any way to get the PWD using some ...
1
vote
5answers
56 views

SQL select id where other columns are identical

If I have a table of properties with columns owner, wallColor and roofColor (let's say one owner can own multiple houses but houses can have only one owner), how can I select all owners who only have ...
1
vote
3answers
55 views

SQL query to transform table

I got a problem transforming a table that looks like this city | distributor | phno --------------------------------- new york xxx 12345 new york yyy 12312 new york zzz ...
1
vote
1answer
46 views

Optimizing sybase SQL Query

Is there a way to optimize the following query: UPDATE myTable SET Calculation = (SELECT MAX(Calculation) FROM myTable T WHERE T.Id = myTable.Id AND T.Flag='N') WHERE Calculation='NA' ...
1
vote
3answers
64 views

Is it possible to load a subset of columns using Sybase 15 bcp?

I have a CSV file with 20 or so columns and I want to load it into a table with only 9 columns - I want to throw away the rest. Can I do it directly with bcp or do I need to preprocess the file to ...
1
vote
2answers
263 views

Sybase bcp doesn't export field headers?

Does anybody know to force sybase bcp to export column headers along with data? The utility documentation curiously ignores this important feature..., perhaps I missing something. Any help will be ...
1
vote
2answers
273 views

How to create a recursive path from sybase-ase db?

I have a problem I've previously solved with other DBMS but can't find a solution to run with Sybase-ASE 15.0. Is this possible with SQL (or Views) without custom StoredProcedures? Input: ID Name ...
1
vote
1answer
569 views

cross join issue in hibernate

I have been using Hibernate 3.2 intailly for my J2EE application with Spring 2.5.Recently I wanted a feature of hibernate 3.5(BigInt Identity support).So I have upgraded my hibernate and now I facing ...
1
vote
1answer
322 views

Problem using SQLDataReader with Sybase ASE

We're developing a reporting application that uses asp.net-mvc (.net 4). We connect through DDTEK.Sybase middleware to a Sybase ASE 12.5 database. We're having a problem pulling data into a ...
1
vote
3answers
636 views

Build number Mismatch : Problem with Sybase ASE version

I have a C# Console application which references Sybase.Data.AseClient. dev machine has version 1.15.325 version of dll UAT has version 1.12.XYXZ Prod has version 1.15.115 I get the below ...
1
vote
1answer
667 views

Sybase ASE - Tracing queries / processes

If there are any Sybase ASE experts out there, I was wondering if there is a way to get Sybase to trace all the queries that it receives. I currently have a program running that usually begins ...
1
vote
2answers
216 views

Update on row for each group with max value in other column

I have to update a column in a very, very large table. So performance is a big issue. The question is the similar to this one, but only for Sybase Adaptive Server Enterprise (ASE 12.5.4) plus I need ...
1
vote
1answer
138 views

SYBASE “net password encryption reqd” avalaibility

Hi i am using sybase developer edition, i am being unable to set {sp_configure "net password encryption reqd",1}. Do i need any license for this. I get error message "Sybase :: How to start server ...
1
vote
1answer
111 views

Finding server password encryption properties

1> how can i find whether server is accepting encrypted password or not from C program using sybase library(encryption set by sp_configure "net password enryption reqd",1), to make sure whether i ...
1
vote
1answer
78 views

problem sybase autogenerated ids

I have a table in which the PK column Id of type bigint and it is populated automatically increasing order of 1,2,3...so on i notice that some times all of a sudden the ids that are generated are ...
1
vote
1answer
781 views

How to INSERT INTO table DEFAULT VALUES in Sybase ASE

When you want to insert default values into a table, some databases allow this syntax: INSERT INTO table DEFAULT VALUES; ASE does not support this. Using: INSERT INTO table (col2, col3) VALUES ...
1
vote
2answers
697 views

Configuring SQL Anywhere to read from an ASE server

I have a Sybase ASE server that I'm able to connect to with ASE iSql totally fine. The database definition in my sql.ini file looks like: [<NAME>] master=TCP,<servername>,<port> ...
0
votes
1answer
31 views

Removing AS keyword from correlated subquery when using QueryOver

I have a query with a correlated exists sub-query that generates a database syntax error: Session.QueryOver<Company>(()=>company) .Where( c => c.Type == Company.GetTypeCode(type) ...
0
votes
1answer
14 views

Sybase ASE identify columns of keys of multiple tables

I'm trying to identify the columns making up keys in ASE. Sybase has the solution listed here: http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.help.ase.15.5/title.htm I have ...
0
votes
1answer
29 views

sybase tempdb log segment filling

I have a Sybase ASE server that hangs every week or so, indicating tempdb log segment is full. I have tried everything. trunc log on chkpt is enabled and it works correctly resetting used_pages ...
0
votes
3answers
47 views

Groovy Sql to execute statements in a batch

I am using Groovy Sql to fetch results. This is the output from my Linux box. Actually there are 2 statements involved sp_configure 'number of open partitions' and go see below %isql -U abc -P abc -S ...
0
votes
2answers
56 views

Groovy Sql to fetch all columns

I am using Groovy Sql to fetch results. This is the output from my Linux box. %isql -U abc -P abc -S support 1> sp_configure 'number of open partitions' 2> go Parameter Name ...
0
votes
1answer
26 views

Power Transfer for Sybase? - Trying to move data from Oracle to Sybase

I need to move the data from Oracle to Sybase. I have successfully moved the schema but to move data one of the white paper on Sybase pointed to use Power Transfer tool, however I cannot locate it on ...

1 2 3