Once Linked JDEdwards database in our MS-SQL database under the Linked server and when we going to see the data it should be encrypted. Here I am show to how to see data like as MS-SQL.
Actual JDEdwards data
My linked server name is “TESTDTA” (JDEdwards database). Open new query window type the below query & press (F5).
SELECT VJDGJ FROM [TESTDTA].[F1001]
Output
Convert AS SQL Data
Meanwhile we can insert the data to JDEdwards and without convention, it’s shouldn’t effect on JDEdwards table. So before insert data convert like a below query.
--INSERT INTO [TESTDTA].[F1001] (VJDGJ)
SELECT (1000 * DATEDIFF(YEAR, 0, GETDATE()) + DATEPART(DAYOFYEAR, GETDATE()))
Leave a Reply