Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Integration / Customization
IPA/ProcessFlow
SQL Query vs Query Node
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Raju
Past 24 Hours:
1
Prev. 24 Hours:
0
Overall:
5205
People Online:
Visitors:
304
Members:
0
Total:
304
Online Now:
New Topics
Lawson S3 HR/Payroll/Benefits
Post Tax Benefit Plan Table
11/14/2024 9:16 PM
Hi, totally new to Laswon. I have a repor
Lawson S3 Procurement
ED501 Error: Map 850 not supported by /law/c15vda/lawson/test10/edi/bin/laws_out_91
11/12/2024 3:47 PM
Tried runnning ED501 and getting the atathced erro
Lawson Smart Office
Error
11/6/2024 9:54 PM
When I try to enroll a retiree in 72.1 health plan
Infor CloudSuite
Syteline: New Data Maintenance Wizard (Error) Need help
11/1/2024 4:39 PM
Hi, I need help with an error on syteline while us
Infor ERP (Syteline)
Syteline: New Data Maintenance Wizard (Error) Need help
11/1/2024 4:24 PM
Hi, I need help with an error on syteline while us
Dealing with Lawson / Infor
Implementing Lawson v10 with Cerner Surginet, Case Cart Picking, and Quick Adds for the OR
10/29/2024 4:20 PM
Hi Everyone, I am wondering if there is any org
Lawson S3 HR/Payroll/Benefits
Canada Tax Calculation (Federal and Provincial) Issue
10/23/2024 5:00 AM
Initially, we had problem with CPP2 calculation is
Lawson S3 HR/Payroll/Benefits
CA Section 125 401k Plan
10/22/2024 10:13 PM
Does anyone have any recommendations on how to fac
S3 Systems Administration
Running AC120 deleted records from ACMASTER table
10/22/2024 3:40 PM
We recently ran the AC120 as normal and somehow it
Lawson S3 Procurement
RQ13 Approval Info
10/17/2024 2:12 PM
When a Requisition is approved on RQ13, what table
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
JonA
3291
Kat V
2984
Woozy
1973
Jimmy Chiu
1883
Kwane McNeal
1437
Ragu Raghavan
1369
Roger French
1315
mark.cook
1244
Forums
Filtered Topics
Unanswered
Unresolved
Announcements
Active Topics
Most Liked
Most Replies
Search Forums
Search
Advanced Search
Topics
Posts
Prev
Next
Forums
Integration / Customization
IPA/ProcessFlow
SQL Query vs Query Node
Please
login
to post a reply.
9 Replies
1
Subscribed to this topic
52 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
JudeBac
Veteran Member
Posts: 129
3/30/2011 5:21 PM
I am just curious to know if there is a rule of thumb on when to use the SQL Query and Query node. I am bias towards SQL Query, however, most of the time, Query node code is shorter and you do not have to figure out the table/file relations specially if you build the code using the Query builder.
On the other hand, I can write SQL with no tool assistance (very experienced). This thought came about when I am creating a query on tables EMPLOYEE, PAEMPLOYEE, POSITION, JOBCODE.
Thanks,
Jude
David Williams
Veteran Member
Posts: 1127
3/30/2011 5:31 PM
The advantage to using the SQL query is that you're not limited to Lawson's predefined relationships on the tables. Lawson really meant for the SQL query to be used on tables outside of the Lawson system - as an integration tool. Of course, it works both internally and externally, as you know.
It's really a matter of preference.
JudeBac
Veteran Member
Posts: 129
3/30/2011 6:01 PM
I do prefer SQL. I just need to to remember to use RTRIM and alias on strings.
Thanks,
Jude
George Graham
Veteran Member
Posts: 201
3/30/2011 7:09 PM
I think it also depends on what you're going to do the with the data you are querying and the volume. Both are iterative nodes and have overhead just in the iterations themselves. I have sometimes opted for the much more difficult task of writing a very involved SQL query, and then wrapping it in a System Command to have it dump out a csv file. I've seen anywhere from a 10-50x performance difference vs iterations of thousands of records.
But generally I think for basic queries its your comfort level.
Rob Conrad
Veteran Member
Posts: 73
3/30/2011 8:13 PM
Hi Jude -
Your choice really depends on whether you're doing an ETL type thing OR needing to integrate the SQL data iterations into the FLOW itself to execute business logic. Most clients I've worked with need to boost their JVM Heap to handle the overhead from the SQL Iterations - so I recommend really treating the PFLOW more like a Web Presentation Layer and do all your heavy lifting on the DB itself using SP's or Functions or like George recommends with a Command where possible for ETL stuff. I've also witnessed the SQL Node treating SQL Alias a bit weird too - they wouldn't execute in the PF SQL Node, but the same code was fine in Enterprise Manager (on SQL 2005 / SQL 2000 concurrent flow).
RC
JudeBac
Veteran Member
Posts: 129
3/31/2011 12:09 PM
Thanks for the advice guys.
amylynanderson
Advanced Member
Posts: 26
9/20/2013 1:54 PM
How did you get the SQL node to dump to a csv file? I always have to put a file access node in between to write the data our to a file or msg depending on what I need to do the the results.
Kyle Jorgensen
Veteran Member
Posts: 122
9/20/2013 2:25 PM
Amy - that's exactly how you do it. You have to write each record returned by the query.
George Graham
Veteran Member
Posts: 201
9/25/2013 6:10 AM
You can also run the sql from a command line and provide an option to have the sql output to a csv - actually faster than the iterative approach. Then you can manipulate the csv file from inside the flow.
Mr Bill
New Member
Posts: 1
12/2/2013 10:01 PM
The way I look at it is, I use the SQL query for more complex joins and find it is faster. Now for a simple join and a low volume data collection like a record at a time. the DME query is fine and easier to set up.
Please
login
to post a reply.