Re: SQL Update, HANA performance
In one application that I made, we did a lot of insert into the database. At first, the performance was really slow. The network usage between the server and the application was minimal.We accelerated...
View ArticleRe: MAX(varchar) HANA
Hi Randi, analytic views are meant to serve as 'cube'-constructs, not as fancy SQL tables.While you could perform a comparison between two strings (e.g. byte by byte) and thereby define a MAX or MIN,...
View ArticleProblem on initial config step of hana studio
Hello, I was watching the great video "Native HANA Dev Workshop: Getting Started" from Thoman Jung on Youtube.To the point where I have to open SAP HANA Studio --> Menu --> Window -->...
View ArticleError while activating attribute view :
An internal error occurred during: "Activation".java.lang.NullPointerException How to resolve this error!!!
View ArticleRe: Error while activating attribute view :
Hi Vivek, There could be multiple reasons. First option is to close the HANA Studio Modeler and restart. Most of the time it worked for me.Check if your Studio version is the same as DB versionPlease...
View ArticleRegister on cloud share is failing
Hello, While trying to register for SAP HANA, developer edition on CloudShareThe link here is above pic which goes to following...
View ArticleUsing .NET ODBC with mutiple queries
Hi The following statement works fine in Hana Studio: CREATE LOCAL TEMPORARY table #prc as (select '1' AS Test from dummy); SELECT * FROM #prc; DROP TABLE #prc But when executed via the .NET Odbc...
View ArticleRe: "Error when connecting to system" or "Invalid Username or Password" with...
Dear Ferry Was successfully. I appreciate your help..
View ArticleRe: MAX(varchar) HANA
Hi Lars, Thank you for the reply. I've supplied the SQL for the normal view. I've underlined what's causing me problems when trying to create the analytical view. We are trying to find the max of a...
View ArticleRe: Using .NET ODBC with mutiple queries
Are you trying to run the 3 queries in only one execution by separating them with ; ?That does not work with the hana odbc driver.It crash when it find a ;You will probably need to execute the 3...
View ArticleRe: MAX(varchar) HANA
Ok, Randi - here's how it works:if you want me to look into this, I need something I can work with. give me a CREATE TABLE command (or several, if necessary)give me some INSERT commands with as much...
View ArticleNeed TZHANA and TZH300 docs
Hi All, I required the TZHANA& TZH300 docs to pass HANA certification,can anyone please share these docs.. Regards,Pravanjan
View ArticleRe: Sample data SFLIGHT not visible in the trial version of HANA studio
Thanks Rocky, that helped. Regards,Sonali.
View ArticleRe: SAP HANA
Hi Krishna SAP HANA is an in-memory data platform that is deployable as an on-premise appliance, or in the cloud. It is a revolutionary platform that’s best suited for performing real-time analytics,...
View ArticleRe: jdbc information from ngdbc.jar
Thank you so much.You're advice is useful to me. Andcon.getMetaData().getDatabaseProductVersion();=> also can be applied! Thank you!
View ArticleDATE displayed as 00000000
Hi, I am starting into HANA SQL these days.....I am trying following SQL - select BNAME,BCODE,GLTGV,PASSCODE,UFLAG from "SAPQ12"."USR02"; This sql displays the date as 00000000. I tried TO_DATS(GLTGV)...
View ArticleRe: DATE displayed as 00000000
Hi Surendra, I had a similar problem and oddly the following worked for me with the to_date() function: to_date(date, 'YYYYMMDD') -> note the format string. Try experimenting with the dummy pseudo...
View ArticleRe: DATE displayed as 00000000
It sounds like you have nothing but zeros stored in the field to begin with. When I look at my same table directly in SAP I have a lot of entries with 00/00/0000. Have you looked at the source table...
View ArticleRe: Need TZHANA and TZH300 docs
I believe that's copyrighted materials that you have to pay for.
View ArticleRe: Search for * (star) character using CONTAINS()
It seems that you cannot use any non-alphanumerical characters in CONTAINS, not just the asterisk, it works only on words, just like Google. If you really have to search for an asterisk, use e.g. LIKE...
View Article