Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
SuiteQL speed
Hello. I'm creating application with REST WebService, that using SuiteQL.
Currently i'm trying to optimize processing speed. I'm see, that some queries executes slow.
This is some examples of my queries. Is this normal speed for SuiteQL?
1) Take one quote (select t.*, to_char(t.createddate, 'yyyy-mm-dd HH24:MI:SS') datecreated, to_char(t.lastmodifieddate, 'yyyy-mm-dd HH24:MI:SS') datemodified, c.displaysymbol from transaction t join currency c on c.Id = t.currency where t.type = 'Estimate' and t.number = 85) – 4.76s.
2) Take list of 65 quotes (select t.*, to_char(t.createddate, 'yyyy-mm-dd HH24:MI:SS') datecreated, to_char(t.lastmodifieddate, 'yyyy-mm-dd HH24:MI:SS') datemodified from transaction t where t.type = 'Estimate' and t.custbody_wex_customerid = 161 order by t.number desc) – 6.92s.