Tagged Questions

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 ...
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 ...
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
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 ...
0
votes
1answer
13 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
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
31 views

Remote backserver with Sybase ASE

I get a dump file on my local machine and I want to reload it into a remote server ASE 12.5 (from the same local machine) I tried load database from "/tmp/local.dmp" and got Server ...
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
2answers
99 views

Database Design - Advice - How would you do it?

I have to add some functionality to a system that is already a mess and I don't want to make things worse. This shop places very little value on proper design but I do so looking for a compromise. ...
0
votes
2answers
152 views

SybaseHelper class?

I am trying to connect to sybase ASE 15 and call a SP that does some DML. I was wondering if anyone has any pointers to a sybase helper class analogous to SQLhelper.cs or if someone has any pointers ...
0
votes
3answers
782 views

Report on individual password expiration intervals in Sybase ASE 12.5

I want to run a report to make sure the password of every user is set to expire every 30 days, but the expiration interval doesn't seem to be stored in syslogins?
-1
votes
2answers
73 views

NullPointerException when executing rs = stmt.executeQuery(queryData)

I'm trying to connect to a Sybase ASE database. When I retrieve data I get NullPointerException on rs = stmt.executeQuery(queryData);. I tried the same query with dbVisualizer but everything is ok ...