I have used hdblcm for a while.
Now there is another tool hdbalm that can install/update which can be by hdblcm as well , plus content (DU) transport which cannot be done by hdblcm.
So in the overlapped areas, which tool is preferred?
Thanks!
I have used hdblcm for a while.
Now there is another tool hdbalm that can install/update which can be by hdblcm as well , plus content (DU) transport which cannot be done by hdblcm.
So in the overlapped areas, which tool is preferred?
Thanks!
we just did a system copy for our BW on HANA and notice that BDLS for a table with 129 million rows is taking 2 days to finish, has anyone seen this , any hints to make it run faster .
Thank you
Jonu
Hi ,
I want to change SQLPORT (default:30015) to other port . But I can't find this parameter in HANA Studio - Configuration.
Where can I change it ?
Regards,
Jim
Hi Team,
When we issued a HANA restart sometime last week, we got an error saying
FAIL: process hdbpreprocessor HDB Preprocessor not runnin
No much details in log files too.
Then i tried a manual start of preprocessor, it failed with an error saying
Crash at /HDB/IMP/NewDB100_REL/src/sys/src/Basis/System/impl/ProcessID.cpp : 1194 Reason: bind failed with errno: 28.
I had checked at OS level this port was not bound to any process, So i rebooted the host and issue was fixed.
Any idea why is this?
Thanks.
Razal
Hello,
We have a client who is working with SAP BusinessOne version for HANA, with HANA PLATFORM rev. 69 and I need to export your database and import it to our development server .
To backup/restore the database I have performed the following steps :
1 - I have made the export of a ' SCHEMA ' with "EXPORT "SBOXXX_ES"."*" AS BINARY INTO '/tmp/SBOXXX_ES' WITH REPLACE THREADS 10;".
2 - I have compressed files in Linux using the command : tar- czvf .....
3 - I've Unzipped the files to our local server.
4 - Performing the ' IMPORT ' command gives me the following errors,I tried two ways to import :
4.1 - IMPORT "SBOGXXX_ES"."*" as binary from '/tmp/SBOXXX_ES' with replace threads 10 rename schema "SBOXXX_ES" to "SBOXXX_ES_2";
Error mesage: SAP DBTech JDBC: [2]: general error: [Other schema]._SYS_SS_CE_1957622_RET not found in the import directory.
4.2 - IMPORT "SBOXXX_ES"."*" as binary from '/tmp/SBOXXX_ES'
with replace threads 10 NO DEPENDENCIES
rename schema "SBOXXX_ES" to "SBOXXX_ES_2";
Error mesage: SAP DBTech JDBC: [2048]: column store error: table import failed: [30111] Binary import failed (could not execute create statement);invalid column view: ODLN: line 7 col 45 (at pos 506) at ptime/query/checker/check_cube.cc:259
I guess when you export the " SCHEMA " exported la la " DEPENDENCIES ON" option and these are generating the first error when importing .
If the error is of the DEPENDENCIES, in which DEPENDENCIES are stored files to edit , and remove all that is giving the error (SYS_SS_CE_1957622_RET ) .
Thank you very much for your support .
Adria.
Hello All,
We already know that by using this we can get the system lang --
SESSION_CONTEXT('LOCALE_SAP')
But I want to have this information as a calculated column in analytical view so that I can filter my table based on this.
Please help me .
Regards,
Sharath
Hi all,
I have data in a table with few days of previous year data and this year data and it was working fine until December 2014 but when the year changed to 2015 my report started showing zero values .After investigating I found that there is some data from Dec 2014 with last three days of the year .
The SQL script is something like this.
SELECT MAX(MONTH(SLS_DATE)), MAX(YEAR(SLS_DATE)) FROM "SCHEMA"."TABLE NAME";
This script worked fine when Month was increasing with same year but when year increased by one and month decreased from 12 to 01 this script failed to show current year data instead it was showing this.
Hello,
When trying to apply 'IS NOT NULL' operator as filter(where to_date(column) Is Not Null) on the DB column it is not working as expected and pulling the null values into the result.
We are using HANA Revision 33.Below is the SQL generated from BO tool we are using BO 4.0.
Let me know if you have ever faced this issue.
thanks!
Hello,
my /hana/shared partition is FULL, directory /hana/shared/NDB/HDB00/backup/log is 37 GB of a 64 GB partition (due to the 64 GB of machine's RAM), sometimes backup (used with cron) is failling due to i.e.:
/bin/rm: cannot remove `/usr/sap/NDB/HDB00/backup/log/log_backup_4_0_99975680_100183936.1406202958758': No such file or directory
Thanks.
Hi team,
I have a query, if suppose we get the alerts for the technical users like _SYS_* users for example _SYS_EPM that password is going to expire. What action do we have to take is it ok to ignore the alerts or else do we need to take an action regarding the same.
Hi,
We have configured SLT and was running fine. However, we found that some of the existing logging tables are created as a table in the configuration and that is in error (obviously).
Here is the screenshot:
The logging table for Table EKBZ is /1CADMC*637. Now the same logging tables has been created as Transp table and hence it is in error.
Did anybody come across such situation? Please help to resolve the same.
Regards,
SS
Hi folks,
We used to use schema mapping for calculation views that worked something like this;
DEV VIEW CONTAINS
select * from dev.mseg where .....
Then we export/import via delivery unit to staging where we would have schema mapping like this;
Authoring schema = dev
Physical schema = stg
But the imports are failing with error 'DEV schema does not exist'
This used to work and I'm not clear why it no longer works. Both servers are REV82. Any suggestions?
Thanks.
PS: We do not have the same default schema name in each of our dev, stg, prd servers. This is why we are hard coding schema into the calculation view.
Hi Team,
We have set SLT to SAP HANA.
The initial tables which have to be loaded i.e DD08L, DD02L and DD02T all are in scheduled status since long.
I realized that the user _SYS_DATAPOV is "deactivated" as the "password is expired".
I tried to change the password with "SYSTEM" user login but no luck.
I also created a user and assigned it with data admin, user admin rights then tried to change it using that user.
But still no luck.
1) Could you please tell me how to enable _SYS_DATAPOV user?
2) For the tables not getting replicated is due to the above user getting deactivated ?
Thanks & Regards,
Vijay
Dear Experts,
I have following requirements that will use IN operators.
the column A have these values (COIN, KOVO,RKU1, COIE......) and Column B have these values (A, S, H, L) now if column "A" IN ('COIN', 'RKU1','COIE') AND Column B NOT IN ('A','L') Then 'S' elseif Column B IN ('A','L') then 'H' else Column B.
so I have tried to use the below syntax in HANA
If("A" IN ('COIN','RKU1','COIE') AND "B" NOT IN ('A','L'),'S',if("B" IN ('A','L'),'H',"B"))
but it wont validate says invalid expression, so we can't use IN operators in Calculated column? or how I will achieve this logic?
Please advise.
Thanks,
Karuppiah N
Hi,
I created analytical view on the sales table VBAP and vbak.
Following are my requirements
1. I have a created date in vbak and I need to derive Calendar month and calendar year from the date..How can i do that in HANA??
2. I have actual delivery date and GR dates in the purchasing tables. Now i need to calculate the days difference in HANA. I tried daysbetween function but its not working.
3. After looking at the raw data in data preview. Is it possible to remove columns. I mean slice and dice?
Thanks
Sri
Hello Experts,
I have two tables. Table A with many columns for each Symptom and Table B with one column for Symptom. If the input 'FEVER' is inserted into TableB Symptom column, I would like to set up a trigger which automatically puts a 1 value into Table A's Fever Column. I know I can write an if statement:
If tableB.symptom=FEVER
then insert into tableA.FEVER (-1)
But there can be many symptoms and this if statement would drag on and I'm thinking their is a better way.
How would I go about doing this? Would I use a Stored Procedure?
thanks,
Connor
Hi,
Is it possible to attach dedicated memory to services in SAP HANA?:
The tooltip on memory (or equally well the column on the right hand side) shows an "Effective Allocation Limit of Service". I did not find the parameter where to control this. Is this controllable by customizing at all?
Regards,
Ingo
Hi,
In a HA[High availability] architecture , whether the 2nd node will also be active or it will be passive? ie is it like a oracle RAC configuration whether both the nodes are active?
Regards,
Sam
Hello,
We have a client who is working with SAP BusinessOne version for HANA, with HANA PLATFORM rev. 69 and I need to export your database and import it to our development server .
To backup/restore the database I have performed the following steps :
1 - I have made the export of a ' SCHEMA ' with "EXPORT "SBOXXX_ES"."*" AS BINARY INTO '/tmp/SBOXXX_ES' WITH REPLACE THREADS 10;".
2 - I have compressed files in Linux using the command : tar- czvf .....
3 - I've Unzipped the files to our local server.
4 - Performing the ' IMPORT ' command gives me the following errors,I tried two ways to import :
4.1 - IMPORT "SBOGXXX_ES"."*" as binary from '/tmp/SBOXXX_ES' with replace threads 10 rename schema "SBOXXX_ES" to "SBOXXX_ES_2";
Error mesage: SAP DBTech JDBC: [2]: general error: [Other schema]._SYS_SS_CE_1957622_RET not found in the import directory.
4.2 - IMPORT "SBOXXX_ES"."*" as binary from '/tmp/SBOXXX_ES'
with replace threads 10 NO DEPENDENCIES
rename schema "SBOXXX_ES" to "SBOXXX_ES_2";
Error mesage: SAP DBTech JDBC: [2048]: column store error: table import failed: [30111] Binary import failed (could not execute create statement);invalid column view: ODLN: line 7 col 45 (at pos 506) at ptime/query/checker/check_cube.cc:259
I guess when you export the " SCHEMA " exported la la " DEPENDENCIES ON" option and these are generating the first error when importing .
If the error is of the DEPENDENCIES, in which DEPENDENCIES are stored files to edit , and remove all that is giving the error (SYS_SS_CE_1957622_RET ) .
Thank you very much for your support .
Adria.