PRB: Transfer from Sybase System10 to SQL Server 6.5Last reviewed: May 1, 1997Article ID: Q167753 |
The information in this article applies to:
SYMPTOMSFrom the transfer management interface within SQL Server 6.5 Enterprise Manager, if you specify a SYBASE System10 server as the source, all objects in the source database come up in the 'Add/Remove objects' list box as 'User defined datatype.' This makes it impossible to transfer tables,stored procedures, and so forth between Sybase System10 and SQL Server 6.5 using the transfer management interface.
CAUSEIn Sybase system 10 on the UNIX platform (NLM, R6000, SUN, and so on), when bitwise operation is performed with hex number, it always returns 0; for example, (15 & 0xf) returns 0 instead of 15. SQL Server 6.5 Enterprise Manager transfer interface uses (sysobjects.sysstat & 0xf) to determine object type, hence the problem.
WORKAROUNDTo work around this problem, use the Bulk Copy Program (BCP) utility instead.
MORE INFORMATIONSQL Server 6.0 transfer manager works fine because it uses (sysobjects.sysstat & 15) to determine the object type.
|
Additional query words: GUI copy move graphical dialog
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |