Tagged Questions

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 ...
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
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
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
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
16 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
23 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
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
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
615 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
28 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
30 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
32 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
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
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
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
61 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
3answers
63 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
261 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
272 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
666 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
1answer
134 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
110 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
779 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
696 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
26 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
55 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 ...
0
votes
1answer
27 views

sybase ase database is it free [closed]

we want to use Sybase database any of these versions 12, 12.5, 12.5.1, 12.5.2, and 12.5.3 I'm not sure if sybase ase for linux is it free for production use without any cpu or disk limitation
0
votes
1answer
23 views

How to convert hex to varchar and vice-versa using Sybase ASE?

Is it possible to convert varchar to hex and vice-versa using Sybase ASE?
0
votes
1answer
65 views

How to “hide” (return status = 0) from isql stored procedure result?

When I execute stored procedures using isql, they might give this info: (return status = 0) Is it possible to disable that info? I already use SET NOCOUNT ON to disable some part but this is still ...
0
votes
1answer
27 views

Sybase Table Update Disable

I just want to do inserts/deletes and don't allow any update. Is it possible to disable updates on a table? If so, how?
0
votes
1answer
29 views

Sybase hash for validation + convert(varchar, …)?

I've some tables that shouln't be modified after some final steps in a process. To validate that it wasn't made any modifications (after the final state) I'm thinking about making an hash of all the ...
0
votes
1answer
63 views

MYSQL group_concat equivalent in Sybase ASE?

Is there a equivalent function in Sybase ASE to the group_concat of MYSQL?
0
votes
0answers
24 views

How do I find out the last time DBCC Checkstorage was run on Sybase ASE?

I'm working with my DBAs and asking them to execute a number of steps in sequence. What command do I run to out the last time DBCC Checkstorage was run on Sybase ASE?
0
votes
0answers
230 views

SybaseASE Error: Implicit conversion from datatype 'VARCHAR' to 'NUMERIC' is not allowed. Use the CONVERT function to run this query

While executing following query in SybaseASE: - declare @DCRID_list varchar(500) select @DCRID_list = '12122,2000' update NotificationTable state = 20100, comments = null ...
0
votes
2answers
70 views

Sybase - way to get time since ASE started?

Is there a way on Sybase ASE to get the time since the ASE server was started?
0
votes
2answers
37 views

Is there any function like REPLACE in ASE?

Is there any function to replace words in ASE? Thanks SP
0
votes
1answer
73 views

How to supress results set in Sybase?

I Have to suppress result set from a stored proc Is there any set command to suppress the result set in sybase stored proc? I have a stored proc,i want to use that in my front end and script with out ...
0
votes
0answers
97 views

Using Sybase with Enterprise Library 5

Does anyone know if Enterprise Library 5 supports Sybase drivers - and if so which ones (preferably not ODBC). We are trying to use EntLib5 with Sybase IQ and Sybase ASE? Also, any idea on the ...
0
votes
3answers
139 views

What is the default number of locks available in Sybase

Sybase is throwing following error "a deadlock has occured or all locks were taken". So I wanted to check if the issue happened because of Sybase running out of available locks. Does anyone know the ...
0
votes
0answers
144 views

Sybase Table Partitioning

How would you determine the number of recommended partitions for a table in Sybase ASE 12? I've looked around and there seem to be no guidelines about this. I'm planning to partition a table with ...
0
votes
1answer
239 views

Can I use dynamic sql in ASE to declare a cursor

I want to use dynamic sql to select the database name for a cursor. Is this or something similar possible using sybase ASE? create procedure myproc @dbname = varchar(20) = null as declare mycur ...
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
599 views

Sybase ASE 12.0 CSV Table Export

What I'm trying to do is export a view/table from Sybase ASE 12.0 into a CSV file, but I'm having a lot of difficulty in it. We want to import it into IDEA or MS-Access. The way that these programs ...
0
votes
1answer
443 views

Sybase BCP - include Column header

I am using Sybase BCP. It exports nicely but i need to include the column names in the first. Is there a way to do this. If now please tell me some other method to get that columns. Thanks

1 2