miPwn
miPwn

Reputation: 1166

Sybase Development IDE

Is there a Toad type application for Sybase? I can't seem to find a single one! I've tried using VS 2008 but can't see the sproc source.

Upvotes: 4

Views: 11518

Answers (8)

SmartDeveloper
SmartDeveloper

Reputation: 61

DBeaver is open-source and appears to work fine.

Upvotes: 1

Rick
Rick

Reputation: 4753

Looks like Quest now offers a Sybase version of Toad.

Upvotes: 1

B0rG
B0rG

Reputation: 1225

I'm using CAST SQL-Builder from CAST Software, the debugger in this tool saved me a lot of time.

Upvotes: 0

Fortyrunner
Fortyrunner

Reputation: 12782

Squirrel SQL is open source and works pretty well

Upvotes: 0

Jane
Jane

Reputation: 21

RazorSQL has very good Sybase support. Edit / view stored procedures, etc.

Upvotes: 2

ArBR
ArBR

Reputation: 4082

Try Embarcadero Rapid SQL. I recommend you the 7.4 version over 7.6 because it is more stable. Embarcadero Rapid SQL XE is the recent version.

Embarcadero Rapid SQL XE enables developers and DBAs to produce high performing SQL code at lightening speeds. With support for all major database platforms from a single interface, teams can standardize on one powerful heterogeneous SQL IDE tool.

Upvotes: 0

CharlieBuckeroo
CharlieBuckeroo

Reputation: 29

SqlDbx at http://www.sqldbx.com/. Very light-weight software promising a lot of editor features. This requires Sybase Open Client to be installed on your workstation.

But I'll recommend using Oracle SQL Developer. I'm presently working through a JDBC connection to a Sybase ASE database using this tool. This seems to be Eclipse-based, but is quite responsive and allows you to view source code for functions and procs too.

Upvotes: 1

AdamH
AdamH

Reputation: 1351

Am assuming Sybase ASE.

Ships with Sybase Central and SQL Advantage as part of the client tools. Sybase Central lets you manage and create tables, views, sprocs etc. SQL Advantage lets you run SQL...

Sybase Workspace is a new tool for ASE, I've never tried it. http://www.sybase.com/products/modelingdevelopment/workspace

ASE ISQL is a free tool that is also useful for running sql, but is less useful for modifiying stored procedures etc. (More of a SQL Advantage replacement). http://code.google.com/p/aseisql/

If you have money to spend then there's also Embarcadero's DBArtisan. http://www.embarcadero.com/products/dbartisan. I've used this and it's pretty good, although their support for MSSQL and Oracle is better than the Sybase support.

Upvotes: 6

Related Questions