cancel
Showing results for 
Search instead for 
Did you mean: 

JDBC adapter - Technical settings

Former Member
0 Kudos

Hi,

We have a scenario where we need to send all the packing information to the conveyor system which is SQL server2008.  The frequency would be close to 10-15 seconds.

1. Does JDBC recommended approach for this or do i need to consider other factors like FTP etc?

2. If we can use JDBC, what would be the effective design methodology for this, i.e staging table, stored procedures, directly writing into DB etc.,

Regards

Anandh

Accepted Solutions (1)

Accepted Solutions (1)

rajasekhar_reddy14
Active Contributor
0 Kudos

Answers (2)

Answers (2)

former_member201264
Active Contributor
0 Kudos

Hi Anandha,

I agree with above replies and also consider below points as well.

1. If you want direct data SELECTION then you use Table.

2. If you need to put more conditional SELECT statment then you go for Stored Procedure.

Also make sure Poll Interval will 15 Sec in Sender JDBC Channel and Asynchronous mode of communication.

Regards,

Sreeni.

baskar_gopalakrishnan2
Active Contributor
0 Kudos

>1. Does JDBC recommended approach for this or do i need to consider other factors like FTP etc?

Yes JDBC adapter does this.  You can go with it.

>2. If we can use JDBC, what would be the effective design methodology for this, i.e staging table, stored procedures, directly writing into DB etc.,

The design is purely based on the volume of data that you send to the tables.  I have seen Stored procedure perform better than other options   We run 20000 messages per day using jdbc adapter scenario and no issue.

0 Kudos

go for staging table if  messages size is Big and records per message are low

go for stored procedure if number  of Records per message are high and size is small