Sybase and UNIX?

KutuS

New Member
I worked in sybase using Windows environment for more than 4 years. Now my company is sending for sybase developement position using Linux. I have not worked on Linux so far. I have learned Linux basics and now have to learn Shell Scripting.<br />
<br />
I need your favor<br />
<br />
<br />
I am looking for codes and information how Linux is used with sybase. Please let me know any site (www) where I can find the sybase linux stuff together. I have to go for project development.<br />
<br />
Basically I am looking for jobs scheduling, calling sybase procedure from linux shell scripts etc. In the nutshell what I little know is that I will be using linux to call sybase codes.<br />
<br />
I will be highly thankful to you for your all help and I say Thanks in advance.<br />
 

Sudeep

New Member
For comprehensive guide to Sybase on Linux, refer to the Sybase documentation

http//sybooks.sybase.com/

And choose your Sybase version. This is the best place.

Another site you can try is

http//www.peppler.org/FAQ/linux.html

For connecting to Sybase and running queries from inside a script you can use isql and fsql.

For example,
fsql -S<server_name> -D<database_name> -U<username> -P<password> -c"<SQL Query enclosed in quotes>"

And you'll get the output in the command prompt.
 
Top