When you get below error message, “Alter failed for server ‘’ The execute permission was denied on the object ‘xp_instance_regwrite’, database ‘mssqlsystemresource’, schema ‘sys’. (Microsoft SQL Server, Error:229)” If you are login as SQL Server authentication mode and trying to change the server authentication mode in the server properties. Solution: How to avoid this error, if you want to change the server authentication mode to Windows authentication, first you have to login as windows authentication and then go to server properties and change the mode. Make sure always login as windows authentication mode to change the server authentication mode properties.
We can generate the Date Time dimension table in SAP HANA very easily by existing feature. In the Quick Launch option you can able to see “Generate Date Time Dime” Follow the options and create a table either fiscal or Gregorian. The created tables will be reside under _SYS_BI schema.If the you are chosen Gregorian option then the table name will be “"M_TIME_DIMENSION”. Table name may change based on the granularity that you selected. If you are choose week as granularity then table name will be “M_TIME_DIMENSION_WEEK”. If the option is Fiscal then table name will be “M_FISCAL_CALENDAR”
For each view, system will create a table whether it might be SAP HANA LIVE view or Calculation view or Attribute view. Those tables will be reside in system schema "_SYS_BIC" Expand the schema -> Column Views. There you can see lot of tables. Tables will be available for each view and each column inside that view. Make sure to get the main view. For example if you take HANA Live View "VBAK_COM". --Main View table select top 10 * from "_SYS_BIC"."sap.hba.ecc/VBAK_COM/" To select view with particular column, follow below select top 10 "SalesDocument" from "_SYS_BIC"."sap.hba.ecc/VBAK_COM" The above table can be access in SQL console, it will give the output which is same as what you have seen in the data preview. The other tables also available for columns select top 10 * from "_SYS_BIC"."sap.hba.ecc/VBAK_COM/SalesDocument/hier/SalesDocument" The above table will give deta...
Comments
Post a Comment