Re: Sybase and SQL Server
It is possible - Sybase XI and ASE can do replication to a range of target DBs..we have a Sybase-DB2 rep thang going on here.
To set the tables in Sybase to replicate use the sp_setreptable stored proc.
Re: Sybase and SQL Server
Is there any way of taking the structure of the Sybase database and creating it within the SQL Server database. Basically an initial import.
DJ
Re: Sybase and SQL Server
Yup - they use the same T-SQL syntax to create tables (pretty much - I think SQL server has some extra options in indexes and constraints)
Export your db schema (with whatever db tool you use on sybase) to .sql files then run them in to SQL Server.
Re: Sybase and SQL Server
I've tried exporting the database schema and then running the sql files within SQL Server but there do seem to be differences in syntax between the two as I get errors.
DJ