Re: Display last 3 months from the entered date in SAP HANA
ADD_MONTHS is SQL function. It will not work.. you need to do something like this.. Create a calculated column for holding the value of 3 months back month year.In the projection filter, you need to...
View ArticleRe: XS Engine - http client issue
Which HANA Revision do you have? Outbound connections are possible since SP06. Maybe you can post your code.
View ArticleRe: Permissions for executing Scalar UDF's
I did get it there. Should I remove it from my machine?
View ArticleRe: Problem with BSEG Cluster Table in Calculation View
Hi Johnny, Couple of things, CE_COLUMN_TABLE expects a column table as input. Hence your table has to be a column table and should be available in the query I posted earlier. I am not very sure about...
View ArticleRe: Fetching Childeren -HANA Studio
There are some instructions here on how to disable the statistics server. They were created for the openSAP course, but should apply to any of the AWS systems that are having these...
View Articlehdbsql error
Hi all,we are calling a stored procedure from cron and sometimes it just hangs. Unfortunately, when I try to view running sessions, hdbsql crashes: i2s@vega3:~$ hdbsql Welcome to the SAP HANA Database...
View ArticleWhere are AWS Hana system logs?
Hi all,I've tried hard to find some Hana system log where I could find if or why some query has failed or was frozen. Are there any such files where Hana would record what is going on and what errors...
View ArticleRe: Where are AWS Hana system logs?
I'm sorry for having missed the obvious: my updatedb was not running correctly, so locate didn't really work. It seems that on AWS most of the logs are in /sap/usr/HDB/HDB00/imdbhdb/trace and the...
View ArticleRe: Using XS to upload a binary file?
Hi, I had tried that before...or at least thought I did. I wanted to respond with the error, so I went back and executed that version of code and got the...
View Articlehdbtable file - is there a way to insert a comment
We're building multiple hdbtable files from an existing schema, but while we are formatting the existing schema dump (1 file), we don't the files split (yet) and the table name is not in the content....
View ArticleRe: hdbtable file - is there a way to insert a comment
Hi, a comment is possible with leading "//" (e.g. //test comment).Regards.
View ArticleHana .Net Odbc driver - Issues on culture specific conversions
Hi, I am facing certain problems using .Net Odbc drivers to connect to Hana.Specifically, trying to save decimals without using English-style decimal separators (i.e., "."). I am using default .Net...
View ArticleRe: hdbsql error
Yes, thanks, Lars. The problem is, I'm using the AWS Hana and have no own Hana license. When I go to the SAP service portal, I see no possibility to report anything Hana-related, I see only the...
View ArticlePassword:* -10709: Connect failed (no reachable host left)
Hi, I got the HANA AWS instance running, and I ssh to the instance. There I switched the user to hdbadm, and did the ./HDB stop and ./HDB start. I then entered the hdbsql interactive mode and tried a...
View ArticleHow to really kill a session
HI all,I have a session that holds a bunch of locks and blocks everything else. No matter what I try, I cannot get rid of it: hdbsql HDB=> select connection_id, transaction_id, client_pid,...
View ArticleHow to really kill a session
Have you tried Alter System Disconnect session.. Please check the link below.. http://help.sap.com/hana/html/sql_alter_system_disconnect.html
View ArticleRe: How to really kill a session
Yes, please try harder to read what I've written. -- Micha
View ArticleRe: Is RIGHT() right?
I have the same result like you, but you can use this: SELECT LPAD (cast(round((rand() *100),0) as nvarchar(10) ), 5, '0') "lpad" FROM DUMMY;
View ArticleRe: Is RIGHT() right?
Hi Aron,Very interesting observation seems like a bug to me.. Will dig deeper..
View ArticleRe: Is RIGHT() right?
Well done. Very Very fast. You must have been thirsty. When next in London the drinks on me. LPAD is definitely more elegant than CONCAT in this scenario. But the question still remains why doesn't...
View Article