Tagged Questions
isql utility is used to connect to Sybase ASE server via the command prompt window for running scripts or other database related stuffs.
2
votes
1answer
52 views
isql (sql anywhere) updating NULL value
How can i change (NULL) value of a table? I have searched everywhere but didn't find the right answer.
Works, but updates 0 rows:
UPDATE Club
SET Place = 24
WHERE Place = NULL;
Not working:
...
2
votes
2answers
339 views
Escaping Problem in bash using isql
I am currently working on a little backup script from some firebird databases and I've come up with a weird escaping problem that I don't seem to be able to solve. Here's the thing in my script I ...
2
votes
6answers
14k views
From a Sybase Database, how I can get table description ( field names and types)?
I have access to command line isql and I like to get Meta-Data of all the tables of a given database, possibly in a formatted file. How I can achieve that?
Thanks.
1
vote
1answer
162 views
Informix iSQL date function help
I'm trying to extract just the year out of either of the built-in date functions of Informix
TODAY or CURRENT
Is there a way to do this without SUBSTR()?
1
vote
4answers
187 views
SQL - Informix error leads to another error - hallway of mirrors P.I.T.A
I'm using Informix version 11.50.FC6 via iSql
I'm giving the result of a CASE block a virtual name, att_hrs
SELECT c.id,
CASE WHEN ( c.prog = 'UNDG'
...
1
vote
1answer
348 views
Executing a script using ISQL
I'm creating a simple isql script but it's not working and I need some help to find out whats wrong with it.
I need to connect to a database and execute a SQL file. This is my script called ...
1
vote
2answers
499 views
How to set column width in Informix isql query from command line
When using the Informix isql UI, if the result of a select statement exceeds the width of your display, the output displays vertically on the screen.
1st col_1
1st col_2
1st col_3
2nd col_1
2nd ...
1
vote
4answers
4k views
Sybase SQL Anywhere - How to output data from iSQL to csv file _with_ headings?
I'm trying to query a Sybase SQL Anywhere 8 database with the iSQL client and export the query results to a text file in CSV format. However the column headings are not exported to the file. There is ...
1
vote
2answers
229 views
My C++ application cannot connect to Informix DB server
I've an application (can't provide code, as it's very long), that uses unixODBC. Also, I have installed isql. Everything seems to be configured correctly - drivers, servers and so on, as using isql, I ...
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>
...
1
vote
3answers
6k views
Informix SQL - List all fields & tables
Informix iSQL has a command "info tables;" that shows all tables.
The syntax for viewing the fields and their respective data types is "info columns for table;"
Is there a similar command that shows ...
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
0answers
33 views
isql (sql anywhere) trigger gives error
got strange error "Correlation name 'Club' not found" but the table Club is in the DB. I think the problem is after inserting the values:
ALTER TRIGGER "tg_add_club" AFTER INSERT,
UPDATE ON Club
...
0
votes
1answer
171 views
FreeTDS - tsql connects, isql fails
I'm trying to connect to a database on my host machine (windows xp, sql server 05). My guest machine is Ubuntu 10.04. I can connect and execute commands with tsql, but isql fails. Below are my ...
0
votes
0answers
32 views
isql wait for end of query on iphone
i'm using isql sdk to make Microsoft Sql 2008 query through iphone, everything works fine but I always need to click two button to get the answer of my query. I press the button 'submit' then i can ...
0
votes
1answer
126 views
Executing SQL statement in ASEISQL with UNIX scripts
Since I am new to unix scripting. I am running a SQL statement in ASE ISQL, and if SQL statement gives some result then I need to mail that result to a particular users. And if SQL is not returning ...
0
votes
0answers
169 views
Problem in executing Sybase stored procedure in vbscript
I am executing a sybase stored procedure in VB Script to export the data from the SP to an excel file. While executing the SP in ASE ISQL gives me exact result but while executing the SP in VBScript ...
0
votes
0answers
71 views
isql not letting me run in batch mode
I am using debian and trying to run a mssql query using batch mode, I cannot get it to do anyting though
isql MSSQL-Perl SomeUser SomePass -b "select e.name, n.mac_address from vpx_vm v inner join ...
0
votes
1answer
525 views
Sybase SQL Anywhere - Unable to export data to file
I am attempting to export a query in Sybase SQl Anywhere but am receiving an error when getting to the OUTPUT TO command. My query looks like this:
SELECT User_Name as 'Remote Database', nDaysBehind ...
0
votes
1answer
293 views
How does Informix deal with temporary tables when an iSQL session is dropped?
I'm curious as to how Informix (7.3) deals with temporary tables created with no log when a session is terminated without dropping those tables.
I connect using iSQL:
cat |isql db
Then, for ...
0
votes
1answer
278 views
Getting mapped entities from an ISQLQuery without AddEntity
consider these POCOs:
class Foo {
int Id {get;set;}
string Name {get;set;}
}
class Bar {
int Id {get;set;}
string PropA {get;set;}
Foo PropB {get;set;}
}
Now what i want to achieve is ...
0
votes
2answers
494 views
Can I run a Firebird stored procedure from a batch file, or is there an ISQL equivalent
I want to run a Firebird stored procedure from a batch file or similar on a desktop. The stored procedure contains insert statements and update statements with if possible parameters that I would like ...
0
votes
1answer
483 views
How do I create a new Firebird database from the command line?
I'd like to create a new Firebird database in my C# client application. Is there a command line utility that lets you do this?
0
votes
3answers
4k views
How I can find the list of Sybase Indexes for a given database?
How I can find the list of Indexes for a given database in Sybase?
0
votes
2answers
4k views
Informix 7.3 isql insert statement - text/blob/clob field insert error
Is a way around this??
I am trying to insert some data into a table whose structure is:
Column name Type Nulls
crs_no char(12) ...