unix and linux commands - unix shell scripting

Blog: The Most Popular Tech Articles and How-Tos of 2008


 
Thread Tools Search this Thread
# 1  
Old 12-19-2008
Blog: The Most Popular Tech Articles and How-Tos of 2008

What were your favorite technical articles and how-tos published this year? (Hint: topics range from Oracle Database 11g new features, to rich enterprise application development, to Java persistence, to SOA.) Read this blog post to find out!

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Red Hat

Tc command and IP tos in linux

Hi, I use comand Tc to set the traffic control in linux box . I use below command to set Qos , search TOS field equal to 0x2 and put it in first queue other put in to third queue .. tc qdisc add dev eth0 root handle 1: prio priomap 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 tc qdisc add dev eth0... (0 Replies)
Discussion started by: chuikingman
0 Replies

2. IP Networking

How to capturing packet data so i can see the Version, IHL, TOS, etc?

Helo Folks :) i had read an answer in this thread unixcom/programming/117551-calculate-ip-header-checksum-manually.html i need to know what the software name that was used to capturing packet data in a network, just like the packet's capture output that showed up in the thread. Thank you :)... (5 Replies)
Discussion started by: polutan
5 Replies

3. Web Development

Why Python is not so popular?

Hello, Do you have any suggestions? I want to know your opinions why Python is not so popular in web env. Thank you! (6 Replies)
Discussion started by: gstoychev
6 Replies

4. UNIX for Dummies Questions & Answers

who's the most popular

hello everyone. i am working on getting my network+ and server+ certs. after that i want to get a unix cert, but i don't know what's the most needed. i've checked the web sites for sun, ibm, and hp and they all claim to have the fastest, most stable, open source compatible unix system that sets all... (1 Reply)
Discussion started by: foustware
1 Replies
Login or Register to Ask a Question
OCI_SET_MODULE_NAME(3)													    OCI_SET_MODULE_NAME(3)

oci_set_module_name - Sets the module name

SYNOPSIS
bool oci_set_module_name (resource $connection, string $module_name) DESCRIPTION
Sets the module name for Oracle tracing. The module name is registered with the database when the next 'roundtrip' from PHP to the database occurs, typically when an SQL statement is executed. The name can subsequently be queried from database administration views such as V$SESSION. It can be used for tracing and monitoring such as with V$SQLAREA and DBMS_MONITOR.SERV_MOD_ACT_STAT_ENABLE. The value may be retained across persistent connections. PARAMETERS
o $connection -An Oracle connection identifier, returned by oci_connect(3), oci_pconnect(3), or oci_new_connect(3). o $module_name - User chosen string up to 48 bytes long. RETURN VALUES
Returns TRUE on success or FALSE on failure. NOTES
Note Oracle version requirement This function is available when PHP is linked with Oracle Database libraries from version 10 g onwards. Tip Performance With older versions of OCI8 or the Oracle Database, the client information can be set using the Oracle DBMS_APPLICATION_INFO pack- age. This is less efficient than using oci_set_client_info(3). Caution Roundtrip Gotcha Some but not all OCI8 functions cause roundtrips. Roundtrips to the database may not occur with queries when result caching is enabled. EXAMPLES
Example #1 Setting the module name <?php $c = oci_connect('hr', 'welcome', 'localhost/XE'); // Record the module oci_set_module_name($c, 'Home Page'); // Code that causes a roundtrip, for example a query: $s = oci_parse($c, 'select * from dual'); oci_execute($s); oci_fetch_all($s, $res); sleep(30); ?> // While the script is running, the administrator can see the // modules in use: sqlplus system/welcome SQL> select module from v$session; SEE ALSO
oci_set_action(3), oci_set_client_info(3), oci_set_client_identifier(3). PHP Documentation Group OCI_SET_MODULE_NAME(3)