Re: Help: Auto-Login to HANA Web Workbench for HCP Trial not working after...
Hello Masashi,Could you provide me the exact URL to which you get redirected?Above all, I suggest you to migrate your content to a new HANA MDC instance. The migration will be required in the near...
View ArticleRe: Rows count mismatch between sap HANA and Sql after execution of select...
Hi Naresh, I had similar issues and found that it was because of the difference in case sensitivity. SQL server is not case sensitive but HANA is. Try below query in HANA and see if it matches with...
View ArticleHANA connect to MySQL with unixODBC
Hi experts, I want to HANA connect to MySQL with unixODBC. What should I do? Brs, Candy Zhang
View ArticleRe: Help required for free SAP HANA Cloud development issue.
Hi Anton, Thanks for taking your time and replying to my post. But it still isn't working. Is it because i am using free trial account? Thanks,Prasenjit
View ArticleRe: HANA connect to MySQL with unixODBC
Hi Candy Zhang, What is the reason for this connection?one way to connect is using SDA ,go through the below link to get more details on the...
View ArticleRe: Help required for free SAP HANA Cloud development issue.
Hi Muthuram, Thanks for the steps in details in the screenshots, I will try them today and update you accordingly if it works. Thanks for taking out time to help me. Regards,Prasenjit
View ArticleWHAT IS DATENAME EQUIVQLENT FUNCTION IN HANA
Hello experts, Can anyone please help me in providing datename equivalent function in hana below is the sql query after execution of this query i am getting 78 rows select distinct...
View ArticleNo data found when passing a variable holds string value to sql query in sap...
Hello, In a procedure, there are following lines of code which has 3 select statements: "declare variable1 NVARCHAR(100);declare variable2 INT; variable1= '''ABC''';variable2= 101; --Statement1:select...
View ArticleRe: No data found when passing a variable holds string value to sql query in...
Hello Antony, Why are setting the variable as variable1= '''ABC''' ? Try this ,variable1= 'ABC' ; Observe the difference between SELECT '''ABC''' FROM DUMMY; and SELECT 'ABC' FROM DUMMY;Regards,Nithin
View ArticleParallelization of HANA procedure
Hello, I would like to execute following procedure in HANA parallel. The procedure will be called several times with different properties. Now it seems that all calls are executed in stack. As the...
View ArticleRe: Parallelization of HANA procedure
Hi Matthew Laurance , please try to put the DML statements inside the "Parallel execution block " and check.For an exampleCREATE PROCEDURE ParallelUpdate AS ,BEGIN , BEGIN PARALLEL...
View ArticleRe: No data found when passing a variable holds string value to sql query in...
Hello, Thanks for your prompt response and making me to understand the difference. Suppose if we declare: "variable1 = ' ABC' || ' and PRODUCT_ID = 101';"and if we use the above variable in the...
View ArticleRe: No data found when passing a variable holds string value to sql query in...
The following will not work variable1 = ' ABC' || ' and PRODUCT_ID = 101'; Why because is the value of variable1 will be then 'ABC and PRODUCT_ID = 101', where it should only be 'ABC'. Can you try...
View ArticleSAP HANA B1 - Create and Execute Stored Procedure Privileges
Hello experts,I am kinda new to SAP HANA Platform. I am trying to create a Stored Procedure under some schema and execute it via B1 HANA Add-on application. Created SP from Eclipse SQL Console.Whenever...
View ArticleRe: How to get year-month (first alphabet should be upper case for month)...
Thanks a lot Nithin , its working fine for me RegardsNaresh P
View ArticleRe: WHAT IS DATENAME EQUIVQLENT FUNCTION IN HANA
I think I am not able to get you, As per your last message, you want to filter out those Data whose month are starting with J for Jan or M for May or March. If that is so. please use the below snippet,...
View ArticleRe: Exact Months between two dates
Can you try the below. Assume that each month is having 30 days SELECT FLOOR(DAYS_BETWEEN( TO_DATE('2016-01-31','YYYY-MM-DD'),TO_DATE('2016-03-30','YYYY-MM-DD')) / 30 )FROM DUMMY; Regards,Nithin
View ArticleRe: How to get year-month (first alphabet should be upper case for month)...
Hi Naresh, If this works ,can you please mark this as correct answer. It will help somebody looking for the same Thanks
View ArticleRe: Exact Months between two dates
Hi Vatsal, Use this Query and you will get required output SELECTCOUNT(*)-1 AS"MONTHS_BETWEEN"FROM(SELECTDISTINCTYEAR, MONTHFROM"_SYS_BI"."M_TIME_DIMENSION"WHERE DATE_SQL...
View ArticleFailed Activation because of Dependencies
Hello, I tried to transport some objects: User Defined Functions (.hdbtablefunction) that have dependencies among themeselves. And in the end I use UDFs as data source for Calculation Views. Question...
View Article