Oct 4, 2001 #1 Guest_imported New member Joined Jan 1, 1970 Messages 0 Could anyone suggest me how to write dynamic SQL in Sybase 12.0 Server Thanks.
Oct 4, 2001 #2 RajD Technical User Joined Aug 23, 2001 Messages 53 Location US Hi, Try this simple one first: ============================ declare @mysql varchar(255) select @mysql="create table tmp_xyz ( col1 int, col2 char(2))" execcute(@mysql) ============================= Once you get the feel of it, try the complex ones. RajD Upvote 0 Downvote
Hi, Try this simple one first: ============================ declare @mysql varchar(255) select @mysql="create table tmp_xyz ( col1 int, col2 char(2))" execcute(@mysql) ============================= Once you get the feel of it, try the complex ones. RajD
Oct 19, 2001 #3 AoN Programmer Joined Oct 19, 2001 Messages 12 Location SE Is it possible to do this for SYBASE 10.x or 11.x? Thanks. Upvote 0 Downvote
Oct 22, 2001 #4 RajD Technical User Joined Aug 23, 2001 Messages 53 Location US Hi AoN, Unfortunately, NO! RajD Upvote 0 Downvote