Tagged Questions
The sybase-iq tag has no wiki summary.
6
votes
12answers
738 views
Are these tables too big for SQL Server or Oracle
I'm not much of a database guru so I would like some advice.
Background
We have 4 tables that are currently stored in Sybase IQ. We don't currently have any choice over this, we're basically ...
4
votes
6answers
97 views
SQL conditional grouping and summing
My data looks like this:
|cat |subcat |amount|
---------------------
|A |1 |123 |
|A |2 |456 |
|B |1 |222 |
|B |2 |333 |
In the first case, I need to sum by cat ...
3
votes
2answers
77 views
T-SQL what does “<tablename> is not accessible in this context” mean? (SQL Code: 1001042)
Using Sybase IQ 12.5,
When I try to insert the result of a stored proc into a table like this:
INSERT mytable (column1, column2, column3)
SELECT column1, column2, column3
FROM (myproc('AAA'))
I ...
3
votes
4answers
100 views
is there any faster way to populate a resultset from a database query?
i have the following code that queries a db and populates a datatable.
private DataTable Run(string sql)
{
var conn = new OdbcConnection();
string connString = ...
2
votes
3answers
1k views
Sybase IQ - how to show stored procedure without wrapping text?
Using Sybase IQ v12.7. Executing sp_helptext ProcedureName shows the text of the stored procedure which is fine. However it wraps lines at 80 characters. The question is, how to show text text of a ...
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
2answers
273 views
Why is this Sybase IQ Update Statment So Slow?
I have one table (Table1) with some info and a string ID
I have another table (Table2) with some more info and a similar string ID (it is missing an extra char in the middle).
I was originally ...
1
vote
2answers
772 views
How do you LOAD TABLE in Sybase IQ from a client using Java?
Is it possible to load a file from a client computer into a table in Sybase IQ, using the LOAD TABLE ... USING CLIENT FILE statement?
The data does not come from a database, but rather an external ...
1
vote
1answer
487 views
Sybase IQ: How to create a DBSPACE with raw device?
I'm on Sybase Iq 15.1 and try to add a dbspace to a demo database, using a raw device on Linux. I always get SQL error 1010000, file already exists:
CREATE DBSPACE KLMTEST USING FILE DF1 ...
1
vote
2answers
452 views
Sybase IQ and Encrypted Passwords
I have need to use the ENP (Encrypted Password) parameter with Sybase
IQ. The documentation has a good reference on how to use it but not
how to generate the password ... so how does one generate ...
1
vote
2answers
596 views
Sybase IQ Pagniation
I wonder if anyone has a solution to the following requirement. I have a stored procedure which returns a result set of for example 1000 rows. Now I need to limit this to 100 rows at a time. So I ...
0
votes
1answer
37 views
Sybase IQ Single Writer?
I've heard a number of my colleagues make reference to the fact that Sybase IQ can only have a single writer. I'm struggling to find documentation on the web that either confirms or denies this so ...
0
votes
1answer
150 views
Sybase IQ: Converting a string to NUMERIC without error/exception
I'm using Sybase IQ and need to convert a field from string to NUMERIC. The field sometimes has characters other than digits. In those cases I want it to return 0 instead of raising exceptions. How to ...
0
votes
1answer
55 views
Sybase:-where to save a new database
I have downloaded "SQL Anywhere-12" trial version from the Sybase website.
I use Windows Vista
It installed itself in two locations.The Sybase related folders are in:-
1) "C:\Program Files\.."
...
0
votes
1answer
79 views
Archiving data in Sybase IQ from Sybase ASE
What is the best means of solving the following problem:
I have a Sybase ASE database which is used as an OLTP server. There is a lot of data inserted into the database each day and as a result the ...
0
votes
0answers
116 views
Sybase IQ SPL internal variable @@rowcount contains an incorrect number of rows processed
The problem:
After each of the insert, update or delete steps, the Sybase IQ internal global variable @@rowcount contains the number of rows processed. This value is used to reconcile the counts of ...
0
votes
0answers
180 views
ASA Error -1013028: An invalid size (too large) was specified for a LOAD option
I am trying to load a sybase table using a file ( unit separator is the delimiter) which is in IQ server.
I Used load statment as below
execute ('LOAD TABLE schemaname.work_flow (' || ' ...
0
votes
2answers
38 views
0
votes
1answer
398 views
Encrypting ODBC DSN login password programmatically. Sybase SQL Anywhere
I am using file DSN for connecting to Sybase database. Login password is encrypted and is stored with "EncryptedPassword" keyword in the .dsn file. I have the requirement to change the database ...
0
votes
1answer
375 views
Operation failed on file due to file permissions,hos_clientfileio.cxx 142
When i execute SQL "LOAD TABLE ...USING CLIENT FILE..." to Sybase IQ database in tomcat's apps,
get this problem"Operation failed on file due to file permissions,hos_clientfileio.cxx 142".
But when i ...
0
votes
1answer
448 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
0
votes
2answers
147 views
How should i execute and get the result of a query which is stored in a column as a data value
How do I execute a Sybase query which is stored in a column of another Sybase table?
Suppose that "SELECT COLa FROM TABLE_A" is stored in a column called 'command' in a separate table (table_log). I ...
0
votes
2answers
230 views
cryptic error message: Length of Bind host variable exceeds MaxLength
I've encountered a cryptic error message thrown by Sybase IQ server.
com.sybase.jdbc2.jdbc.SybSQLException: ASA Error -1001019: Function not supported on varchars longer than 255 Length of Bind host ...