ওরাকল ডাটাবেজে অনেক ভাবেই ডাটা র্যাঙ্কিং করা যায়। সবচেয়ে সহজ সমাধান হল Aggregate functions ব্যাবহার করে। কিন্তু এ ধরনের ফাংশনে নন গ্রুপ কলাম সিলেক্ট করা যায় না। এর সহজ সমাধান হল এ ক্ষেত্রে Analytics functions ব্যাবহার করে ডাটা র্যাঙ্কিং করা। Continue reading Row ranking tips using RANK, DENSE_RANK and ROW_NUMBER
Tag: SQL
Tips and Tricks – 1
1. Create unique case-insensitive constraint on a column.
Solution: Add function level unique index, example –
CREATE UNIQUE INDEX index_name on table_name (UPPER(Column_Name));
2. Cannot create service/sid using ORADIM (DIM-00019: create service error O/S-Error: (OS 5) Access is denied.)
Solution: Make sure your oracle service is running. then create instance.
To create instance- Open CMD (command prompt) with admin privilege. the type the following then hit enter.
ORADIM -NEW -SID SID_NAME
continue…