toString(JT_DEAL_PLAN_EFF_DT, 'MM/dd/yyyy HH:mm:ss','es-ES')
Thursday, April 3, 2025
Thursday, March 20, 2025
SQLSERVER and ORACLE IMPORTANT Queries
SQLSERVER and ORACLE IMPORTANT
EXEC sp_columns 'dbo.tablename';
EXEC sp_help 'dbo.tablename';
SELECT column_name FROM information_schema.columns WHERE table_name = 'tablename' AND table_schema = 'ETL'
SELECT DB_NAME() AS CurrentDatabaseName;
SELECT name AS CurrentDatabaseName
FROM sys.databases
WHERE database_id = DB_ID();
oracle:-
SELECT DBMS_METADATA.get_ddl ('TABLE', 'tablename','HR') from dual;
Subscribe to:
Posts (Atom)
ADF functions
toString(JT_DEAL_PLAN_EFF_DT, 'MM/dd/yyyy HH:mm:ss','es-ES')
-
Web services are open standard ( XML, SOAP, HTTP etc.) based Web applications that interact with other web applications for the purpose of...
-
OBIEE12c Creating Analyses and Dashboards Oracle BI is a comprehensive collection of enterprise business intelligence functionality t...
-
Performance improvement Tips using Hint in OBIEE 11g RPD or Other ways.. We can improve the performance of reports by doing tuning using ...