Does anyone knows how can we see database data in ...
# general
s
Does anyone knows how can we see database data in netsuite instance?
k
If all you want is database view - then SuiteAnalytics Connect is your tool
s
Does it shows data inside the tables?
k
My best guess is that it shows "views" that are reflective of the actual tables themselves, but not the actual tables. - so you get to see the data.
You just can't modify it etc.
s
Ok thanks, I will try this
k
It is a paid module
You will have to contact your account rep to get it added to your account.
I'd suggest looking through some recent chat around it in #C2A1ZEMF0
s
ooh thanks
Can I fire sql queries over there?
k
It gives you an ODBC connector that you can write SQL queries against using another tool, such as Visual Studio
s
You can fire SQL queries with
N/query
module without needing that
💯 1
k
Note that occurs within scriping - so you'd have to do more to make that functional.
s
You just can't see what you are firing against 🙈
s
once you have SuiteAnalytics Connect, yes you can run SQL queries. There are two data sources (NetSuite.com and NetSuite2.com), both showing the same data, but in a different schema, further evidence that they are likely both just a set of views over top of the actual data tables.
s
@Sandii without needing what?
s
But, you can also use REST web services and the query module in SuiteScript to run SuiteQL, which is a SQL-like query language, with certain differences and limitations
Neither REST web services or SuiteScirpt require additional services, so they can be used without additional charges
s
SuiteAnalytics Connect
is an extra module you have to pay for. You do not need it to write code/use the
N/query
APIs
✔️ 1
s
you mean API like this? {{REST_SERVICES}}/query/v1/suiteql?limit=5
Alo this give me below response: {     "type": "https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1",     "title": "Invalid search query Your current role does not have permission to perform this action..",     "status": 400,     "o:errorCode": "INVALID_PARAMETER" } @Sandii @scottvonduhn
d
Hit up @Josh_SatoriReporting if you want a real view of your NetSuite data
s
ok will do. Thanks