Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  iWay Software Product Forum on Focal Point    create table for sql server in data migrator using stored proc

Read-Only Read-Only Topic
Go
Search
Notify
Tools
create table for sql server in data migrator using stored proc
 Login/Join
 
Member
posted
I am using data migrator and I want to use a store proc to create a table in sql server 2012.
I have created my adapter, I can connect to the sql, I can load data to the sql using flows and synonyms. But I cannot connect using store procedure in data migrator.
Can someone please advice how to do that or just write me a store procedure to create a table.

code should look like below

-*SQL SQLMSS SET SERVER servername
-*END

SQL SQLMSS
COMMIT WORK ;
END



SQL SQLMSS
CREATE TABLE Test_SP.dbo.test_07182013
( RepDate varchar(8) NULL,
CompCode varchar(3) NULL,
InventNumber char(15) NOT NULL
) ;
END

SQL SQLMSS
COMMIT WORK ;
END


WebFOCUS 8.1
Windows, Data migrator, ISM, DQC,All Outputs
 
Posts: 9 | Registered: March 20, 2012Report This Post
Guru
posted Hide Post
Assuming you want to use your first connection and Test_SP is a valid database name, all you need to do is this:
SQL SQLMSS
CREATE TABLE Test_SP.dbo.test_07182013 
  (RepDate varchar(8) NULL, CompCode varchar(3) NULL, InventNumber char(15) NOT NULL ) ;
END

There should be no response unless there is an error. If there is an error, let us know what it is.


N/A
 
Posts: 397 | Location: New York City | Registered: May 03, 2007Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  iWay Software Product Forum on Focal Point    create table for sql server in data migrator using stored proc

Copyright © 1996-2020 Information Builders