Re: SQL Server and HANA - Query with parameters
With a problem description as open as this the problem could be anywhere.Maybe the selection criteria is wrong. Not possible to tell from what we know until here.
View ArticleRe: invalid datatype: "LOCATION" SPATIAL type in GROUP BY clause
You seem to not get the point I was trying to make earlier.It's is not possible to GROUP BY st_* data types. What you've just repeated with the data preview is showing that just once again. Maybe you...
View ArticleRe: Hide views from user
In the end we realized that the DEFINER mode for the procedure is the way to go. It's important to remember that the DEFINER is the _SYS_REPO user. So, one needs to make sure that the _SYS_REPO user...
View ArticleSAP Hana view from SQL Server
Dear experts, We have a performance problem with a view on Hana consumed from SQL Server. If we do an select without parameters, the view returns 450.000 registers and take more than 50 seconds on...
View ArticleError handler for any error type
Hi all, how can I implement an error handler within a SQLScript procedure that is called for any error type? We defined the handler as follows DECLARE EXIT HANDLER FOR SQLEXCEPTION BEGIN CALL...
View ArticleRe: Left Outer join
Hi, I have done through graphical view but when i am doing with SQL query I am getting below error. Code: select table3.A_ID from table3 left outer join table4 on ( table3.A_ID = table4.B_ID ) where...
View ArticleRe: Left Outer join
Hi, Its done. Below is the correct code. var_out = ( SELECT T3."A_ID",T4."B_ID" from "table3" AS T3 left outer join "table4" AS T4...
View ArticleNew editor in Procedure is taking time
Hi Gurus, When ever I create a procedure in Project exporer under XS project type (.procedure), It is taking lot of time in buffering.Am I missing any setting in HANA studio (I am using SP7) which...
View ArticleXS to another Hana System
Hello everyone! I have xs-application and 2 HANA systems, for example, hana1 and hana2.XS-application based on hana1, but I want also use data from hana2.Is it possible?I was trying to call xsjs from...
View ArticleRe: XS to another Hana System
The only option here would be to create a SDA table access to the second SAP HANA system.To the XS program this would look like a local table. But generally that's not the idea behind XS development or...
View ArticleRe: Left Outer join
Why would you want to do it with CE functions?Do you have some development time to spent?
View ArticleRe: Error handler for any error type
Hi there. The 2048 is a rather critical error that is not supposed to be caught by some SQLScript code. Something went very wrong here and there is no way your code can handle it - so you cannot catch...
View ArticleRe: Swap space for HANA?
SAP HANA is absolutely not designed to run off swap memory. You may see if you are able to get it running with less memory (use the allocation limit setting, maybe) and see how you go. But swapping is...
View ArticleUnit conversion vs BW
Hello. I'm loading data from BW to HANA and I'm using currency and unit conversion with the built in capabilities in Hana Studio. What I'm facing right now is that when comparing the volume in HANA vs...
View ArticleRe: XS to another Hana System
I have gone through some similar considerations and could only come up with 1 viable approach, which would be to place your XSJS server side data access layer on both HANA XS instances. Then from your...
View ArticleAuthorization object for S_ALR_reports*
Hi, We wanted to restrict following reports at organization level ( Eg Company level,plant level cost center...
View ArticleRe: Creating a Composite Provider in SAP BW 7.3 on HANA
Hi Jeffrey,I used this workaround whih worked in my case: "Save" the Composite Provider, exit, then re-open it in "Change" mode.
View ArticleRe: XS to another Hana System
Thank you for reply, maybe you're right.. In my opinion, i it would be convenient to use similar data in one application.
View ArticleRe: XS to another Hana System
Thank you for reply, i ll try to use XS HTTP Outbound API
View ArticleRe: XS to another Hana System
Thank you for reply, Paul.Yes, it is possible in the future there will be a similar tool. I'll try to implement your ways.
View Article