0
votes
What is the equivalent of varchar(max) in Oracle?
In PL/SQL, VARCHAR2 can be up to 32767 bytes. For SQL the limit is 4000 bytes (which may be less than 4000 characters if you are using a multi-byte character set).
…
0
votes
Paging with Oracle and sql server and generic paging method
"Because...data can be change from other sessions."
What do you want to happen for this ?
For example, user gets the 'latest' ten rows at 10:30.
At 10:31, 3 new rows are added (so t …
1
vote
Platform Neutral SQL Statement for INSTR or CHARINDEX
Have you considered just hiding the select in a database view ?
From the application point of view, it will just be a plain, vanilla SELECT with no functions and all the database-specific stuff rem …
0
votes
SQL Server and Oracle, which one is better in terms of scalability?
When you are talking 500TB, that is (a) big and (b) specialized.
I'd be going to a consultancy firm with appropriate specialists to look at the existing skill sets, integration with existing techno …
0
votes
Is there any way to impersonate a specific database engine while running another one?
The closest I've heard is EnterpriseDB where they have built a layer on top of Postgres so it looks more like Oracle.
But remember these databases have features covered by patents and copy …
0
votes
How to get the list of java processes along with their PID(process id) that are running on UAT server under a specfic account?
Have you tried Process Explorer
"Ever wondered which program has a particular file or directory open? Now …
