Skip to content

Instantly share code, notes, and snippets.

View jramb's full-sized avatar

Jörg Ramb jramb

  • Stockholm
  • 23:18 (UTC +02:00)
View GitHub Profile
@jramb
jramb / ebs-logged-in-users.sql
Last active June 15, 2023 20:49
List all users currently logged in on Oracle EBS.This select lists all users currently logged in (only potentially, since they might have ended the session without loggin out).
select last_connect, usr.user_name, resp.responsibility_key, function_type, icx.*
from apps.icx_sessions icx
join apps.fnd_user usr on usr.user_id=icx.user_id
left join apps.fnd_responsibility resp on resp.responsibility_id=icx.responsibility_id
where last_connect>sysdate-nvl(FND_PROFILE.VALUE('ICX_SESSION_TIMEOUT'),30)/60/24
and disabled_flag != 'Y' and pseudo_flag = 'N'
@jramb
jramb / levenshtein.sql
Last active December 30, 2015 11:39
String distance metric - Levenshtein distance Optimized with some efford, still, performance depends heavily on the length of the input. Example: select xx_tools_pkg.levenshtein_dist('Hejsan', 'hejsan'), xx_tools_pkg.levenshtein_dist('kitten', 'sitting') from dual; Returns distances of 1 and 3. Probably you would want to apply upper/lower on the…
-- Levenshtein is a string distance metric
-- https://en.wikipedia.org/wiki/Levenshtein_distance
function levenshtein_dist(p_s varchar2, p_t varchar2)
return number deterministic
is
type int_t is table of pls_integer index by pls_integer;
type char_t is table of char(2) index by pls_integer;
v0 int_t;
v1 int_t;
t char_t; -- copy of p_t for performance
@jramb
jramb / TryIt
Created June 10, 2015 09:45
Calling a WS from Java using WSsecurity (cleartext PW), building XML manually, no XMLBeans
package xxcust.testClient;
import javax.xml.namespace.QName;
import javax.xml.soap.MessageFactory;
import javax.xml.soap.MimeHeaders;
import javax.xml.soap.SOAPBody;
import javax.xml.soap.SOAPConnection;
import javax.xml.soap.SOAPConnectionFactory;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPEnvelope;
@jramb
jramb / keybase.md
Created February 6, 2016 21:38
keybase.md

Keybase proof

I hereby claim:

  • I am jramb on github.
  • I am jramb (https://keybase.io/jramb) on keybase.
  • I have a public key ASDOFoydae_xmR9tVPSYO8rejULQNTtghARbtdhWwhAgdgo

To claim this, I am signing this object:

@jramb
jramb / nic_validate_se_persnr_mod.js
Created October 27, 2023 06:43
Luhn validation of swedish personal id number
/**
* @NApiVersion 2.1
*
* @Description nic_validate_se_persnr_mod.js
* @Solution Generic module
*
* @Copyright 2023 Noresca IT Consulting AB
* @Author jorg.ramb <[email protected]>
*
* # Explanation