HI All,
can we read /write data from sql server with help of Migration tool and insert into IFS application tables.
If yes, pls let me know that how can do this.
Thanks in advance.
HI All,
can we read /write data from sql server with help of Migration tool and insert into IFS application tables.
If yes, pls let me know that how can do this.
Thanks in advance.
I don’t think we have an available functionality to direct import from SQL server. However you should be able to utilize “File Migration” or “Excel Migration” types in IFS data migration to achieve this. i.e. You export data from SQL server in to files and then use IFS “File migration” to import them in to IFS database. Or you export SQL server data in to excel and then use IFS “Excel migration” to import them.
Following documentations explain how you can use “File Migration” and “Excel Migration”.
You can easily find manual and automated ways which you can use to export data from SQL server database.
Hope this helps.
I haven’t done myself but what I think is if you create a db link between IFS db and sql server, then you should be able to import data from sql server.
resources for creating db link between oracle and sql server: Database link from Oracle to SQL Server (dba-oracle.com)
Cheers!
Damith
Don Burleson’s website is second-to-none, but he didn’t spell out how to build the init file. His instructions were also for hsodbc in Oracle 10, and dg4odbc is now what you want in 12. Here are my notes on how to do this, with our sensitive bits replaced of course:
On Oracle database server host:
Create ODBC connection
64-bit
System DSN
Type: SQL Server
Name: MY_SQL_SERVER_ODBC
Description: My Thing
Server: sql.example.com
"With SQL Server Authentication"
"Connect to SQL Server to obtain default settings for the additional configuration options"
User: sqluser
Password:
Next screen:
Don't change the default database.
Don't attach database filename.
Use ANSI quoted identifiers.
Use ANSI nulls, paddings, and warnings.
Next screen: Just one thing checked.
Perform translation of character data
Add entry to listener.ora.
(SID_DESC =
(SID_NAME = MY_SQL_SERVER_ODBC)
(ORACLE_HOME = C:\oracle\product\12.1.0\dbhome_1)
(PROGRAM = dg4odbc)
)
Add entry to tnsnames.ora
MY_SQL_SERVER_ODBC =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST =localhost)(PORT = 1521))
(CONNECT_DATA =(SID=MY_SQL_SERVER_ODBC))
(HS=OK)
)
)
Add file: C:\oracle\product\12.1.0\dbhome_1\hs\admin\initMY_SQL_SERVER_ODBC.ora
HS_FDS_CONNECT_INFO = MY_SQL_SERVER_ODBC
HS_FDS_TRACE_LEVEL = OFF
HS_FDS_FETCH_ROWS = 1
Restart listener. (You may need to kill DG4ODBC.EXE from Task Manager if it's running.)
SET ORACLE_HOME=C:\oracle\product\12.1.0\dbhome_1
lsnrctl stop && lsnrctl start
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.