Share tables of schema in same SID

Today, I need to sync data of different schema in same SID (same database). Honestly, I'm not very good at Oracle but I gotta develop this kind of project. That's why I've asked in StackOverFlow and @Luck Woodwords and he replied good solution.

http://stackoverflow.com/questions/9452488/how-to-create-oracle-dblink-in-same-sid#comment11957843_9452488

[More]

Get Javascript value from Coldfusion in same page

Today, I've found funny resolution to get javascript value from Coldfusion in same page without reloading. I'm not sure whether it might be useful or not, but for me it's kinda useful.

Usage

view plain print about
1<cfsavecontent variable="JSvalue">
2    <script>
3        var whatisyourname = "ppshein";
4        document.write(whatisyourname);
5    </script>
6</cfsavecontent>
7
8<cfoutput>#JSvalue#</cfoutput>

Top of Page