Porting MySQL tables to Sybase
I am creating a database using MySQL and want to hand off the database to someone who uses Sybase 15 (Sybase's ASE RDBMS). I know nothing about Sybase, but what I have gathered from a quick search on the Internet is that Sybase has a SQL extension,Transact-SQL. Will the person using Sybase be able to import the table I create using MySQL?

    Requires Free Membership to View

    When you register, my team of editors will also send you resources covering Linux administration and management; integration and interoperability between Linux, Windows and Unix; securing Linux and mixed-platform environments; and migrating to Linux.

    Cathleen A. Gagne, Senior Editorial Director

    By submitting your registration information to SearchEnterpriseLinux.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchEnterpriseLinux.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

If you stick with SQL standard data types, it should be easy to export the database to SQL statements using mysqldump and executing those in Sybase. There might be some minor modifications necessary, especially if Sybase handles indexes or NULL values a little differently. Advanced features like triggers, sequences, stored procedures and configuration settings are unlikely to port directly between databases.

This was first published in March 2007