<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: How to create a list of SAP HANA parameters in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/how-to-create-a-list-of-sap-hana-parameters/qaa-p/13795549#M4841672</link>
    <description>&lt;P&gt;Can you please check following &lt;SPAN&gt;SAP Knowledge Base Article:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://me.sap.com/notes/2186744" target="_blank" rel="noopener"&gt;2186744&lt;/A&gt; - FAQ: SAP HANA Parameters&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Laszlo&lt;/P&gt;</description>
    <pubDate>Thu, 15 Aug 2024 05:51:06 GMT</pubDate>
    <dc:creator>Laszlo_Thoma</dc:creator>
    <dc:date>2024-08-15T05:51:06Z</dc:date>
    <item>
      <title>How to create a list of SAP HANA parameters</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-create-a-list-of-sap-hana-parameters/qaq-p/13793903</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am creating a list of SAP HANA parameters.&lt;BR /&gt;It seemed like a good idea to use the SYS.M_INIFILE_CONTENTS view to reference all the currently set HANA parameters at once.&lt;/P&gt;&lt;P&gt;This SYS.M_INIFILE_CONTENTS view exists in both systemDB and TenantDB, and each contains different information.&lt;/P&gt;&lt;P&gt;For example, if you search for LAYER_NAME = 'SYSTEM' in the SYS.M_INIFILE_CONTENTS view in TenantDB, several parameters will be found, and if you similarly search the SYS.M_INIFILE_CONTENTS view in SystemDB, several different parameters will be found.&lt;/P&gt;&lt;P&gt;Also, if you search the SYS.M_INIFILE_CONTENTS view by narrowing down the KEY to one, data for the three LAYER_NAMEs "DEFAULT", "SYSTEM", and "DATABASE" will be returned as results.&lt;/P&gt;&lt;P&gt;When creating a parameter list for SAP HANA, how should I organize the SYS.M_INIFILE_CONTENTS views in systemDB and TenantDB?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Aug 2024 05:35:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-create-a-list-of-sap-hana-parameters/qaq-p/13793903</guid>
      <dc:creator>yasuda_shigeharu</dc:creator>
      <dc:date>2024-08-14T05:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a list of SAP HANA parameters</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-create-a-list-of-sap-hana-parameters/qaa-p/13795549#M4841672</link>
      <description>&lt;P&gt;Can you please check following &lt;SPAN&gt;SAP Knowledge Base Article:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://me.sap.com/notes/2186744" target="_blank" rel="noopener"&gt;2186744&lt;/A&gt; - FAQ: SAP HANA Parameters&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Laszlo&lt;/P&gt;</description>
      <pubDate>Thu, 15 Aug 2024 05:51:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-create-a-list-of-sap-hana-parameters/qaa-p/13795549#M4841672</guid>
      <dc:creator>Laszlo_Thoma</dc:creator>
      <dc:date>2024-08-15T05:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a list of SAP HANA parameters</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-create-a-list-of-sap-hana-parameters/qaa-p/13801462#M4842370</link>
      <description>Thank you for your reply. I checked Note.2186744, but it's difficult for me to understand. Example) I executed the following SQL statement in SystemDB and TenantDB. hdbsql SYSTEMDB=&amp;gt; select * from SYS.M_INIFILE_CONTENTS where FILE_NAME = 'global.ini' and KEY = 'global_auditing_state' FILE_NAME,LAYER_NAME,TENANT_NAME,HOST,SECTION,KEY,VALUE "global.ini","DEFAULT","","","auditing configuration","global_auditing_state"," FALSE" hdbsql TH1=&amp;gt; select * from SYS.M_INIFILE_CONTENTS where FILE_NAME = 'global.ini' and KEY = 'global_auditing_state' FILE_NAME,LAYER_NAME,TENANT_NAME,HOST,SECTION,KEY,VALUE "global.ini","SYSTEM","","","auditing configuration","global_auditing_state","true" "global.ini","DATABASE","","","auditing configuration","global_auditing_state","true" "global.ini","DEFAULT","","","auditing configuration","global_auditing_state","FALSE"</description>
      <pubDate>Wed, 21 Aug 2024 01:37:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-create-a-list-of-sap-hana-parameters/qaa-p/13801462#M4842370</guid>
      <dc:creator>yasuda_shigeharu</dc:creator>
      <dc:date>2024-08-21T01:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a list of SAP HANA parameters</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-create-a-list-of-sap-hana-parameters/qaa-p/13801464#M4842372</link>
      <description>&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;I checked Note.2186744, but it's difficult for me to understand.&lt;/P&gt;&lt;P&gt;Example)&lt;BR /&gt;I executed the following SQL statement in SystemDB and TenantDB.&lt;/P&gt;&lt;P&gt;hdbsql SYSTEMDB=&amp;gt; select * from SYS.M_INIFILE_CONTENTS where FILE_NAME = 'global.ini' and KEY = 'global_auditing_state' FILE_NAME,LAYER_NAME,TENANT_NAME,HOST,SECTION,KEY,VALUE "global.ini","DEFAULT","","","auditing configuration","global_auditing_state"," FALSE"&lt;/P&gt;&lt;P&gt;hdbsql TH1=&amp;gt; select * from SYS.M_INIFILE_CONTENTS where FILE_NAME = 'global.ini' and KEY = 'global_auditing_state' FILE_NAME,LAYER_NAME,TENANT_NAME,HOST,SECTION,KEY,VALUE "global.ini","SYSTEM","","","auditing configuration","global_auditing_state","true" "global.ini","DATABASE","","","auditing configuration","global_auditing_state","true" "global.ini","DEFAULT","","","auditing configuration","global_auditing_state","FALSE"&lt;/P&gt;&lt;P&gt;In the above case, how should we think about the parameters of each database?&lt;/P&gt;&lt;P&gt;If the LAYER_NAME in the SQL output of TenantDB is 'SYSTEMDB', will it be the parameter applied to systemDB?&lt;/P&gt;&lt;P&gt;If the LAYER_NAME in the SQL output of TenantDB is 'DATABASE', will it be the parameter applied to TenantDB?&lt;/P&gt;&lt;P&gt;The value 'DEFAULT' is output for LAYER_NAME in the SQL output of both SystemDB and TenantDB, but shouldn't they basically be the same?&lt;/P&gt;&lt;P&gt;Also, if there is a parameter with LAYER_NAME registered as 'SYSTEMDB' in both systemDB and TenantDB, which DB's parameter set will be valid for systemDB&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2024 01:51:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-create-a-list-of-sap-hana-parameters/qaa-p/13801464#M4842372</guid>
      <dc:creator>yasuda_shigeharu</dc:creator>
      <dc:date>2024-08-21T01:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a list of SAP HANA parameters</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-create-a-list-of-sap-hana-parameters/qaa-p/13801630#M4842385</link>
      <description>&lt;P&gt;Can you please check following&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;SAP Knowledge Base Article:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://me.sap.com/notes/2186744" target="_blank" rel="noopener noreferrer"&gt;2186744&lt;/A&gt;&amp;nbsp;- FAQ: SAP HANA Parameters - - &amp;gt;&amp;nbsp;3. Can parameters be set on different layers?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;As an example:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://me.sap.com/notes/2101244" target="_blank" rel="noopener"&gt;2101244&lt;/A&gt; - FAQ: SAP HANA Multitenant Database Containers (MDC) - - &amp;gt;&amp;nbsp;19. Is there global allocation limit per tenant?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also please check:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://me.sap.com/notes/2600030" target="_blank" rel="noopener"&gt;2600030&lt;/A&gt; - Parameter Recommendations in SAP HANA Environments&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Laszlo&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2024 05:24:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-create-a-list-of-sap-hana-parameters/qaa-p/13801630#M4842385</guid>
      <dc:creator>Laszlo_Thoma</dc:creator>
      <dc:date>2024-08-21T05:24:06Z</dc:date>
    </item>
  </channel>
</rss>

