Quantcast
Channel: SCN: Message List - SAP HANA and In-Memory Computing
Viewing all 8968 articles
Browse latest View live

rollback progress tracking in hana

$
0
0

Hi Team,

 

Not sure if this has been asked earlier.

How can i track progress the rollback in HANA? Any queries where i can monitor the rollback progress percentage?


HANA DR setup issue

$
0
0

Hi Team,

 

We get below issue when trying to setup HANA DR.

 

error: remoteHost does not match with any host of the source site. all hosts of source and target site must be able to resolve all hostnames of both sites correctly

 

 

 

In our case we have server in 2 different DC's, Both host have same same with diffrent domain

 

1. xxx.abc.com

2. xxx.xyz.com

 

could someone please help me here.

 

Thanks,

Razal

Re: Problem with HANA System Replication Configuration

$
0
0

Hi Sergio Gonzalez Hitachi

 

 

Have you tried a netstat from the primary server "SITEA"?

 

nestat -na | grep <ip_SITEB>

 

it is not showing anything

 

but telnet and ping is working fine.

Re: Problem with HANA System Replication Configuration

$
0
0

Hi all,

 

we are getting below issue while registering secondary,

after opening all the ports starts with 300**

 

error: remoteHost does not match with any host of the source site. all hosts of source and target site must be able to resolve all hostnames of both sites correctly

failed. trace file nameserver_10.104.152.11.00000.000.trc may contain more error details.

Re: How lot take log backup using script in HANA

$
0
0

Hi Rahaman,

 

Yes, it is because log_mode paramater. it should be NORMAL. And yes, Recovery of PIT(Point in time) will not be possible. But, however, you can make recovery of the HANA DB by using existing data backup only.

 

Regards,

Pavan Gunda

Re: Hana Backup Catalog

$
0
0

HI Joy,

 

in order to solve you issue you  need to take the restart of the nameserver service. I have seen this issue in revesion 74 and the same has been corrected in revision 80.

 

Regards,

Pavan Gunda

Re: HANA Studio Custom Color Themes

$
0
0

Hi Robert,

 

Yeah. Try it after you upgrade. Time being you can make a copy of your studio and upgrade kepler to luna and check it out.

 

Regards,

Safiyu

Diffrence in HANA Backup size between DBACOCKPIT and HANA Studio

$
0
0

Hi All,

 

I have seen a different HANA backup sizes from the DBACOCKPIT -> Diagnostics -> Backup catalog ->

 

and

 

HANA Studio -> backup -> backup catalog - >

 

i.e if see a size of particualar backup (let say on 20th ) .... the complete data backup sizes are different.

 

This is in HANA revision 74

 

Regards,

Pavan Gunda


Re: String to Hex , remove all special characters and back to String again

$
0
0

Hi Reddy,

 

How can a string conversion from string to hex will remove special characters? Is it possible

 

Regards,

Safiyu

Re: String to Hex , remove all special characters and back to String again

$
0
0

Hi Reddy,

 

Anyways, you can create a calculated column to convert string to hex using rawtohex('String') function and unhex it back with hextoraw('hex_string').

Hope it helps.

 

Regards,

Safiyu

HANA High Availability in Scale-Out

$
0
0

I understand one of the HA solution for single-node / scale-up installations HANA is HANA System Replication. For Scale-Out installations, one or more standby node(s) do provides some level of HA (via the Host-Auto Failover method), however it does not provide protection from multiple failures. Some possible extreme designs might be to:

  1. Add a standby node after every 'n' nodes (where n<=2).This I believe can be accomplished using the host group concept in HANA.
  2. Create a complete isolated 'n' to 'n' HA system, i.e. if primary has 4 nodes, create another 4 nodes of secondary system and setup system replication. This feels like an expensive solution for HA (maybe okay for DR).

Please note: I am ignoring the disk based replication and recovery on purpose because the scope is truly HA where quick system availability after an incidence is most important. That certainly again feels like a good option for DR.


Now coming to the question:

Can someone share any insights on how you have setup HA for your scale-out systems? What do you like about it and what you think is difficult to operate with it?


 

Re: Ports of SAP HANA support

Re: How to convert NVARCHAR to DATE data type in calculation view ?

Change SIDADM name

$
0
0

Hello Team,

 

we have SAP HANA SPS9 with multitenency configured. Now say the tenant DB SID is DHI(this is the default DB that got converted to tenant) so the SIDADM name is DHIADM but we want to rename that user to PHIADM.

 

Is it possible? if yes what is the step by step procedure?

 

Thank You,

Amol

Re: CE Function's Calculation View - Private Attributes & Measures retrival error

$
0
0

Hi,

 

I have a similar Scenario; DIFF_IN_DAYS is a calculated column in AT_DSO_BSID. I am using Capital Letters everywhere but still I am getting the error "

Message :

  Internal deployment of object failed;Repository: Encountered an error in repository runtime extension;Internal Error:Deploy Calculation View: SQL: transaction rolled back by an internal error: Attribute not found in column table: DIFF_IN_DAYS: line 8 col 14 (at pos 648)nSet Schema"

 

My Query is;

/********* Begin Procedure Script ************/

BEGIN

  

  IT_SELECT = CE_JOIN_VIEW("_SYS_BIC"."ZHANA_BSOH.Model.WorkingCapital.DSO/AT_DSO_BSID",["BUKRS","GJAHR", "MONAT","DMBTR","DIFF_IN_DAYS"]);

  

  IT_FILTER = CE_PROJECTION(:IT_SELECT,["BUKRS","GJAHR","MONAT","DMBTR",

  CE_CALC('"DIFF_IN_DAYS" - :IN_DSO_DAYS'

  ,integer) AS "CALC_DIFF_DAYS"],

  '"BUKRS"= :IN_BUKRS AND "GJAHR" = :IN_FISCAL_YEAR AND "MONAT" <= :IN_FROM_PERIOD AND "MONAT" >= :IN_TO_PERIOD');

 

  IT_FINAL = CE_PROJECTION(:IT_FILTER,["BUKRS",CE_CALC('if("CALC_DIFF_DAYS" >= 0 AND "CALC_DIFF_DAYS" <= 30,"0-30d",if("CALC_DIFF_DAYS" >= 31 AND "CALC_DIFF_DAYS" <= 60,"31-60d",if("CALC_DIFF_DAYS" >= 61 AND "CALC_DIFF_DAYS" <= 90,"61-90d",if("CALC_DIFF_DAYS" >= 91 AND "CALC_DIFF_DAYS" <= 120,"91-120d","Not Due"))))',NVARCHAR(8)) AS "PERIOD", "DMBTR"]);

    

  IT_AGG = CE_AGGREGATION(:IT_FINAL,[SUM("DMBTR") AS "DMBTR"],["BUKRS","PERIOD"]);

  

  VAR_OUT = CE_PROJECTION(:IT_AGG,["BUKRS", "PERIOD", "DMBTR"]);

 

 

END /********* End Procedure Script ************/

 

Please suggest.

 

Regards, Amit


Re: Repeat a failed transport

$
0
0

Thanks Tarun

You make it sound as though there is a way to "capture a change". I am not aware of that functionality. The only way to "collect or capture" the objects, that were in my previous transport of changes, seem to be to actually "touch" and reactivate each object again.

 

Would you agree with the above?

Re: HANA Date and Time Comparison

$
0
0

I think this is a good way of doing it:

 

IF(YEAR(:v_end_time)+DAYOFYEAR(:v_end_time) < YEAR(:v_start_time)+DAYOFYEAR(:v_start_time)) THEN

 

  SIGNAL CUSTOM_EXCEPTION SET MESSAGE_TEXT = 'End datetime should be MORE RECENT than Start datetime.';

 

END IF;

memory_size in sys.m_expensive_statements

$
0
0


Was wondering what the memory_size is in sys.m_expensive_statements.

 

I'm see some memory values like: 337,340,294,412. Is that terabytes, but that seems too large.

 

Mike

Re: Problem with HANA System Replication Configuration

$
0
0

Hi Hitachi,

 

finally it is working,

 

Issue:

 

statisticsserver is embedded @ primary site.

hostname is having same name in the both hosts.

 

solution:

make the target side also embedded statsserver

change the hostname on target side

 

 

then issue is resolved.

 

 

thank you for your response

 

Regards,

Srini

Re: memory_size in sys.m_expensive_statements

$
0
0

Hi Mike

 

The unit of measurement is bytes, so 337,340,294,412 bytes is around 3.37 GB.

 

Thanks

Srikar

Viewing all 8968 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>