Re: MDC and HRF
Hi Sunil,The Hana version is SAP HANA SPS 11 Database Revision 111 and HRF v1.7.1.Now, I have one Multi Container system improved from Single system. Before improve, I have installed HRF on single...
View ArticleHow to filter by grouped datas On Lumira BI Launchpad
Hi All, I'm using Lumira on Bi Launchpad. I'm new and I have a problem. I have a market data with their basketid's and product names. Below I created a sample data for explaining the issue easily....
View ArticleHANA Web IDE editor sync issue with Github
Hi Guys HANA server:80xx/sap/hana/ide/editor/ which I refer as web ide have some issue when I sync with github. The issue is I can do initial commit but commit system unable to pick up any modified...
View ArticleGraphical modeling: Replace node SPS9
Hi, We're working on improving existing graphical calculation views for performance. At times we feel there is a better way to write a node or a join. However when we build a new node with a different...
View ArticleRe: Graphical modeling: Replace node SPS9
The documentation explains this. SAP HANA Modeling Guide > Additional Functionality for Information ViewsReplacing Nodes and Data Sources"... if your requirement is to replace the deleted view node...
View ArticleRe: When shall we use “execute in SQL Engine”?
Hi Florian thanks for the reply. I read that "Do not use special column store functions in filter or calculated attribute expressions as they might not be convertible. For instance the functions...
View ArticleRe: Select from multiple tables
Hi Matthias, You can use ADD_DAYS Function in Inner Join Query. Please try this. I hope It will work. SELECT A."M_VALUE", A."M_DATE", B."E_EVENTID"FROM MEASUREMENT AINNERJOIN EVENT BON A."M_DATE" =...
View ArticlePATINDEX EQUIVALENT FUNCTION IN HANA???
Hello Experts, I have to use patindex function in my script i.e rtrim(ltrim(substring("Mth", PATINDEX('%-%', "Mth") +1, 10))) = u_month_name where Mth =2016-january,2016-february,2016-march and so...
View ArticleRe: When shall we use “execute in SQL Engine”?
The switch really is a flag, that indicates that you want the query based on the model to be optimised by the SQL optimizer.If this is not possible, e.g. because you are using functions that are not...
View ArticleRe: PATINDEX EQUIVALENT FUNCTION IN HANA???
Hello Naresh, you can use the LOCATE function (LOCATE - SAP HANA SQL and System Views Reference - SAP Library) for your requirement. Regards,Florian
View ArticleRe: URL for data preview is missing!
Hi Lewis, We recently got our new BW (7.5 SP1) on HANA (SP 102.03) system and I am trying to get this ADSO data preview work but unfortunately I couldn't. Does it require JAVA Stack? We don't have JAVA...
View ArticleRe: how to use to_char(to_timestamp("creationdate" / 1000), 'MM-DD-YYYY') in...
Hi Narash, What is the Data Type for the field - creationdate? and What value it have?
View ArticleRe: how to use to_char(to_timestamp("creationdate" / 1000), 'MM-DD-YYYY') in...
Hi Shanmugavel datatype is" string "for creation date and value looks like this 04-18-2014,04-15-2014 and so on.... Note : o_char(to_timestamp("creationdate" / 1000), 'MM-DD-YYYY') AS "creationdate" is...
View ArticleRe: how to use to_char(to_timestamp("creationdate" / 1000), 'MM-DD-YYYY') in...
HI Naresh, I wonder why string value divided by 1000 --> "creationdate" / 1000In HANA,you can use either to_date / to_timestamp functions. to_date ("creationdate", 'MM-DD-YYYY')
View ArticleRe: how to use to_char(to_timestamp("creationdate" / 1000), 'MM-DD-YYYY') in...
HI shanmugavel, dividing the string by 1000 is a requirement that exist in postgresql what about to_char in above statement??? RegardsNaresh P
View ArticleRe: how to use to_char(to_timestamp("creationdate" / 1000), 'MM-DD-YYYY') in...
Hi Naresh, you can use to_char( to_date ("creationdate", 'MM-DD-YYYY') ).It will execute fine. But Dividing Creation Date / 1000, you will get error. Regards,Muthuram
View ArticleRe: PATINDEX EQUIVALENT FUNCTION IN HANA???
Hi Florian, Basically locate function locates the position of a sub string in a string eg:SELECT LOCATE ('length in char', 'length') "locate" FROM DUMMY; locate 1 but in my case i want to locate the...
View ArticleRe: how to use to_char(to_timestamp("creationdate" / 1000), 'MM-DD-YYYY') in...
Hi Shanmugavel, i executed the below query as you said SELECT u."name", "firstname", "lastname", "email", to_char(to_date("creationdate", 'MM-DD-YYYY')) AS "creationdate",...
View ArticleRe: PATINDEX EQUIVALENT FUNCTION IN HANA???
Hello Narseh, and why it should not work? As string in which you want to search the substring you can of course also reference a column. Check following example with your sample data:You can see that...
View ArticleRe: PATINDEX EQUIVALENT FUNCTION IN HANA???
Thankyou Florian, but i have reqiuement like i have to convert ms sql script to hana sql script. below is the ms sql scriptSELECT sum(MetricValue) MV,[u_month_begin_date],mth FROM...
View Article