Home » Page 81

RANK, DENSE_RANK and ROW_NUMBER functions in Oracle

Oracle Analytic functions compute an aggregate value based on a group of rows called window which determines the range of rows used to perform the calculations for the current row. Following are most used Analytic functions.– RANK, DENSE_RANK and ROW_NUMBER– LAG and LEAD– FIRST_VALUE and LAST_VALUE I would be discussing about RANK, DENSE_RANK and ROW_NUMBER …

RANK, DENSE_RANK and ROW_NUMBER functions in Oracle Read More »

How to resolve ORA-28002: the password will expire

We often come across the error ORA-28002 the password will expire in day-to-day activities. This can happen with developers and DBA both. ORA-28002: the password will expire within 7 daysCause: The user’s account is about to about to expire and the password needsto be changed.Action: Change the password or contact the database administrator. Reasons This …

How to resolve ORA-28002: the password will expire Read More »

Useful PHP string functions

Here are detailed working on useful PHP string functions strlen() The PHP strlen() function returns the length of a string.The example below returns the length of the string “john”Example <?php echo strlen(“John”); ?> Output 4 Chr() Converts an ASCII value to its equivalent character Example The ASCII value 46 is the & symbol <?php $str …

Useful PHP string functions Read More »

Scroll to Top