isql utility is used to connect to Sybase ASE server via the command prompt window for running scripts or other database related stuffs.
0
votes
2answers
27 views
Ordering a column while adding an identity column in an existing table in Sybase
Thanks to this good forum, got a number of solutions to my past queries, thanks to Google too. This is my first post in the forum although.
I have a table order with columns pin, orderPath, quantity. ...
-1
votes
1answer
28 views
how do you show line numbers in Oracle isql plus? [closed]
Could someone tell me if you can show line numbers in isql plus? I can't see the correspondence between its error reporting and the actual line count.
Many Thanks.
0
votes
0answers
21 views
isql plus triggers and packages
I have a project for my database class and I have been using isql plus up until now. I was wondering if isql is able to create triggers and packages. He prefers us to use sql plus but states that if ...
0
votes
1answer
23 views
Only able to issue one sql statement from isql
I'm running Debian opening up an ODBC connection to an MSSQL database on the network. When I run isql I can issue one sql statement fine. If I issue the same request a second time it returns 0 rows. ...
0
votes
1answer
32 views
iSQL Plus: print to screen
How do you enable iSQL*Plus terminal to print output to screen?
For instance a simple hello world block:
Note how "hello world" should be printed to screen, but only confirmation that there were ...
0
votes
1answer
31 views
FireBird isql error dont show in output file
When I run isql whith script file:
isql.exe -q -e -i %1 -o %~n1.log
Then in output file I see commands, but error of command I see in the screen when it run.
Error doesnt put in output file.
How ...
1
vote
1answer
56 views
table or view does not exist
Good Day.
I'm running a Powerbuilder 9 application on an Adaptive Server Anywhere Database Engine Version 8.0.1.2600. I use a INI file to connect to the database with default user 'dba' password ...
1
vote
1answer
46 views
Sybase TSQL how to select without `-` chars
My question is very simple, I am trying to print a combination of text and numbers, by using the SELECT statement. However, when I try to print text using this method, I get a lot of miscellaneous - ...
0
votes
2answers
296 views
Failure to connect to SQl Server from Linux
I am trying to connect to SQL Server 2008 on CentOS 5.8. I am using unixODBC 2.3.0 and SQL Server ODBC Driver (www.microsoft.com/en-us/download/details.aspx?id=28160).
When I try to test the ...
0
votes
2answers
117 views
Check if `isql` queries succeed
Is there any way to check if an isql query has failed? It seems isql returns 0 whether queries succeed or not, only returning false if there was a error connecting to the server. How can I determine ...
0
votes
2answers
175 views
Oracle Stored Procedure Call from iSQL PLUS Invalid Identifier
I have created a procedure using the following code using iSQL Plus on Firefox. The procedure compiles successfully.
create or replace procedure get_staff (
product_no in varchar2,
o_cursor ...
0
votes
1answer
86 views
Default output width for isql
When I use isql with the same connect string and execute the same query in two different hosts, I get different result formatting -- one wraps each record after X characters, whereas the other host ...
1
vote
0answers
228 views
ISQL command result in: can't open lib 'odbcci.so' with unixODBC and Pervasive Client on Ubuntu Linux
I can't figure it out how to connect to a Pervasive DB on a Windows Server machine from an Ubuntu Linux 64bit via ODBC.
I installed unixodbc, then 32bit Pervasive Client 11sp2 from here and after ...
1
vote
2answers
300 views
Remove white space from isql output
Is there any way to stop isql from adding spacing before and after the returned fields? I just want the values from the table row separated by ,. At the moment, using -b and -s ',', I get:
...
1
vote
2answers
426 views
psqlODBC won't load after installing MS SQL ODBC driver on RHEL 6
I had the PostgreSQL drivers working on my RHEL 6. But after I installed Microsoft® SQL Server® ODBC Driver 1.0 for Linux I can no longer connect to PosgreSQL data sources. I can connect to SQL Server ...
0
votes
1answer
94 views
Same piped call to isql works on Solaris but not on RHEL
Background: I need to port a ksh script from SunOS 5.10 to RHEL 5.8. It makes a call to isql to retrieve some data and, quite contrary to the intended application of final endpoint client utilities ...
0
votes
1answer
407 views
Running Sybase ISQL scripts from windows batch file
I have already researched on this site as well as on google extensively for this.
I have created a number of batch files that perform certain automated
transactions(backups etc) on our production ...
2
votes
1answer
270 views
Error “Invalid Locales set !!” when trying to install sqldemo on Informix
I am extremely new to Informix and am having some trouble trying to get sqldemo installed.
Set up so far:
openSuse 12.1 (32 bit)
Informix Growth Edition 11.70 UC6
Informix SQL Developer 7.50 UC6
...
3
votes
2answers
595 views
Run multiple insert queries against firebird database using isql
I have requirement of inserting enormous data in table of firebird database around 40K entries. I got my scripts ready but while executing it using flameRobin, the UI just got hang forever while ...
0
votes
0answers
100 views
Can not download isql sdk trial
I want to learn about iSQL sdk, Who can give me a zip of iSQL sdk trial, thank you very much.
or a download address, mail bohanyzu#gmail.com
2
votes
2answers
1k views
How to connect to Sybase Server/Database without port number using DSN or RapidSQL? Or how to find port number?
I have Some Sybase Server/Databases. I know 1. Server Name 2. Database Name 3. Username 4. Password. Using this I can connect using ISQL but while using RapidSQL it asks for port. I have existing ...
1
vote
2answers
406 views
Firebird copy from one database using isql
I've got 2 firebird databases
c:\db1.gdb
c:\db2.gdb
both databases schema's are the same so both contain a table
MyTable
-------
Id int
Name varchar(50)
...etc
Its guaranteed that the data is ...
1
vote
2answers
416 views
Run script with create table on sybase-iq
I want to create table from a script on sybase-iq.
Script table.sql contains:
create table abc
(
id int
)
go
I run the script command
isql -U*** -P*** -S*** -D*** -itable.sql -oout.txt
I'm ...
0
votes
2answers
917 views
passing command line argument to sybase query inside a shell script
This is my script.
#!/usr/bin/sh
isql -Usa -Psybase11 <<!
set nocount on
use bsmdb
go
select count(*) from BSC where bsc='$1'
go
!
exit
i am executing this script as :
temp2.sh 0000
...
0
votes
2answers
64 views
Subtracting a value in a column by average of the same column without using a variable in ISQL
I have 2 tables:
Marks (studentnum,marks)
Student (SNum, SName)
if I do
Select SName, marks-avg(marks) from Marks join Student on SNum = studentnum
then I only get 1 row returned.
Is there a ...
0
votes
0answers
190 views
unixodb connection with PHP fails
I have installed freetds with unixODBC and when I test the connection with isql it works perfectly but when I try to make the connection with php I get an S1000 error.
my configuration details are
I ...
1
vote
1answer
1k views
Adding data sources for unixODBC/isql on Mac OSX Lion
I have installed unixODBC from source and mysql-odbc connector from .dmg installer on Mac OSX Lion. This was done a while ago, and at that time I successfully installed a data source (let's call it ...
0
votes
1answer
305 views
Trying to get sybase db to connect via isql command line… Gui RazorSQL works
Im using RazorSQL and the settings to connect is
GUI RazorSQL Connections show as
Driver Class net.sourcefourge.jtds.jdbc.Driver
Driver Location /Java/drivers/jtds/jtds12.jar
JDBC URL ...
0
votes
2answers
5k views
How to execute an SQL statement stored in a shell script variable using isql
So, I am trying to execute an SQL statement stored in a shell script variable using isql
Generic code attached.
SQL="select * from Student"
EMPLOYEES=`isql -U $USERNAME -P $PASSWORD -D $DATABASE -S ...
-4
votes
2answers
90 views
how to run this piece of sql code in oracle? [closed]
I have this code in sql, it runs perfectly on sql server 2005. But when i run this code in isql plus, it gives error, what changes should I make to run it.
code is---
DECLARE @stu_Name VARCHAR(50), ...
0
votes
1answer
330 views
ASE ISQL output to file, occassionally is empty or blank
Give this unix script, which is scheduled batch run:
isql -U$USR -S$SRVR -P$PWD -w2000 < $SCRIPTS/sample_report.sql > $TEMP_DIR/sample_report.tmp_1
sed 's/-\{3,\}//g' ...
2
votes
1answer
382 views
Replace isql with sqsh in emacs (Ubuntu)
Using emacs on Ubuntu 11.10. I want to connect to a SQL Server database using sqsh instead of isql. I added the following to my initi.el
(set 'sql-sybase-program "sqsh")
(set 'sql-ms-program "sqsh")
...
0
votes
1answer
1k 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 ...
2
votes
2answers
448 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:
...
0
votes
1answer
224 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
...
3
votes
1answer
5k 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
1answer
125 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
1k 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 ...
2
votes
1answer
587 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
955 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
2answers
2k 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 ...
0
votes
1answer
2k 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 ...
1
vote
2answers
922 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 ...
4
votes
4answers
14k views
How to output data from iSQL to csv file _with_ headings?
I'm trying to query a Sybase ASA 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 no ...
1
vote
2answers
390 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
1answer
749 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
594 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 ...
2
votes
2answers
642 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 ...
0
votes
2answers
757 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 ...
1
vote
1answer
1k 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>
...


