![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to connect to sybase from Unix(AIX) | sachin.gangadha | Shell Programming and Scripting | 0 | 11-27-2007 07:48 PM |
| Connect From VB to Sybase 11 | Than Chanroeun | SUN Solaris | 2 | 08-18-2006 11:42 AM |
| Connect to sybase database using Korn shell script | bhgopi | Shell Programming and Scripting | 7 | 08-10-2005 09:34 AM |
| Connect to a Remote Sybase Server Through Script. | Aparna_k82 | Windows & DOS: Issues & Discussions | 2 | 06-23-2005 11:26 AM |
| Remote Connect - SCO Open Server | jackpotp | UNIX for Dummies Questions & Answers | 2 | 05-23-2002 02:24 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Connect to a Remote Sybase Server Through Script
Hi all,
I am trying to connect to Remote Sybase database Server through shell script. I am operating on WindowsXP, connect to Unix(version SunOS: 5.8) The thing is i dont know how to connect to Sybase Server through my script file? Are there any manual pages which can guide me through the process??? Thanks In advance Appu |
|
||||
|
Quote:
Incidently, isql is the utility that you'll probably use. |
|
||||
|
to connect to sybase you can use isql from your unix script, or odbc if you are programming in c o perl.
the isql syntax is like this: #!/bin/ksh DOWN() { isql -b -U$user -P$password -S$server -o$output <<END go go sql statement go END } user=xxxxxx password=yyyy server=zzz DOWN anyway you can search for isql in this forum.. bye. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|