Re: DROP TABLE BY UNLOCKING
Hello s v krishna gavva, Please see the linkhttps://help.sap.com/saphelp_hanaone/helpdata/en/20/d7fd287519101480afbce1b997e4b9/content.htm BRPrabhith
View ArticleRe: how to find creator of a schema?
Hi Syam, The Creator of the Schema IS the owner of the Schema. Please use the following query to find the owner of the Schema. SELECT schema_name, schema_owner FROM "SYS"."SCHEMAS"...
View ArticleRe: DROP TABLE BY UNLOCKING
Hi Krishna, Please use the following sql statement to drop the table even though it is being used by other connections - DROP TABLE table_name CASCADE;
View ArticleRe: how to find creator of a schema?
That's only partly true.When a schema is created with the OWNED BY <user name> clause, the owner can be different to the creator. If the requirement is to find the actual creator, then this is a...
View ArticleRe: DROP TABLE BY UNLOCKING
As long as any object is in use by another user there is no way you can delete it. I is always required to stop the blocking access to the object, e.g. end the transaction that accesses the object....
View ArticleRe: Not able to see "SAP HANA MDX Provider" IN EXCEL 2010
Yes Sir. Done. All set now after installing 32 bit client. Thank you so much for your tip. --Sree
View ArticleRe: Access SAP HANA Cloud from different machines
Hello Dol, of course it is possible to use your project from different machines. If you wanna use Eclipse just set it up as you did it on your first machine. After you are connected to the HANA...
View ArticleUsing 'Pass by reference' as input parameters to calculation view in a SELECT...
Hi, I am migrating MS SQL functions to HANA calculation views . Our application generates a SELECT query depending on the fields/columns and filters the user selects, the query is formed in run-time...
View ArticleRe: Decimal Places are not appearing in SAP HANA Studio Data Preview?
Nope - this is not the correct solution to the requirement.The OP question was about _display_ format - not actual data. With the ROUND() function you cut away precision and any data processing...
View ArticleRe: How to convert Date format 03/25/2012 to 20120325 in SAP HANA Graphical...
As long as you deal with actual date data types, the format really doesn't matter. For WEBI and Explorer I cannot say how they handle date data - I suspect they may use a text representation, which...
View ArticleRe: Decimal Places are not appearing in SAP HANA Studio Data Preview?
Hi Lars, When i displayed without Round() function it's not showing the decimals but when i used Round() it's showing in the output. Regards,Ramana.
View ArticleRe: Using 'Pass by reference' as input parameters to calculation view in a...
Sorry - no idea what repeating your post from before should tell me. Up to here I don't see why the calculations/manipulations you mention couldn't be done in e.g. a subselect or SQL view and then...
View ArticleRe: Using 'Pass by reference' as input parameters to calculation view in a...
I am sorry but is it possible for you to write an formatted sample SQL with calc view for the answer you mentioned above. Maybe i did not get your point earlier.
View ArticleRe: How to calculate Working Days between two date and time in SAP HANA...
Hi Ramana, One of the way to achieve this is creating a scripted calculation view with input parameters parameters as STARTDATE timestamp, ENDDATE timestamp and ( assuming we have 5 working days in a...
View ArticleCORS issue consuming HANA XS service (SPS9)
I'm not able to get CORS working for XS services running on my HANA rev92 server. My JavaScript client is returning "No 'Access-Control-Allow-Origin' header is present on the requested resource....
View ArticleOnly FULL using SLT
Hi, Can we Schedule only FULL loads all the times using SLT from SAP? When ever a record is changed/created in SAP table, we want SLT to trigger FULL load and dont create any logging tables. Let me...
View ArticleRe: Two CV's Record in one Line
Its pretty simple. you just need to join both the views with help of inner join and in semantics whatever name you want to give, you can mention.
View ArticleRe: Schema created in client side is not reflecting in the server side
Hi Kalyan, how you created the schema? Via an hdbschema file? Does your user have the necessary privileges to see the schema (e.g. object privilege SELECT for the schema)? Best Regards,Florian
View Article