Martin Cordova S. wrote: > > Hi, I got some DDL script that I want to run on SAPDB without > modifications, > but I would need to create a kind of alias for a certain data > type in SAPDB > (long varchar = longvarchar) in orde to mantain the script > very portable. > > I already searched the SQL docs and found a "create synonym" > command, but it > works only for tables. > > Any ideas?
A domain is the thing you are looking for: http://www.sapdb.org/htmhelp/6d/117c23d14811d2a97400a0c9449261/frameset.htm create domain longvarchar long varchar That should work Elke SAP Labs Berlin _______________________________________________ sapdb.general mailing list [EMAIL PROTECTED] http://listserv.sap.com/mailman/listinfo/sapdb.general
