Beksy Kurian

Ranch Hand
+ Follow
since Jul 11, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Beksy Kurian

(a) Minimum required:

Seeking Project Manager with extensive experience utilizing software development methodologies to guide software development projects. This position would be a member of a specialized team focused on gathering requirements for new projects and helping lay the foundation for software development. Duties will include facilitating JAD sessions, applying best practices, and fostering "buy in" from stakeholders.



Excellent Verbal and Written Communication skills

Experience with Rational Unified Process (RUP)

Experience managing Software Development Projects

Project Management Professional (PMP) Certification

Experience facilitating Requirements Gathering meetings

Solid Understanding of Object Oriented Analysis and Design (OOAD)

Experience creating Unified Modeling Language (UML) Diagrams

Strong negotiating and people management skills

Ability to maintain professional composure in difficult circumstances



Willing to Travel (10 - 30%)



(b) Desired:

Experience with Earned Value Management System (EVMS)

Experience with Air Traffic or Aeronautical information a major plus.

Previous government experience a plus


Contact: Biju Kurian
biju.kurian@objectstream.com
[ March 09, 2007: Message edited by: Beksy Kurian ]
17 years ago
(a) Minimum required:

The Senior Software Architect will be responsible for analyzing complex requirements to produce reliable, scalable software solutions. This position will work closely with Project Managers to research and develop technical solutions that address stakeholder needs.



Excellent Verbal and Written Communication skills

Progressive experience developing complex software applications using J2EE

Expert level understanding of Object-Oriented Analysis and Design (OOAD) principles

Experience following Rational Unified Process (RUP)

Ability to lead/coach/mentor other programmers

Extensive knowledge of emerging technologies and their application

Experience with Web Services, Service Oriented Architecture (SOA), and Enterprise Service Bus

Experience with Unified Modeling Language (UML)

Experience with Oracle Databases, including Data Modeling and Normalization

Experience with Java Server Faces, Struts, Spring, Hibernate, Portals, Workflow and BPEL



Willing to Travel (5 - 10%)



(b) Desired:

Sun Certified J2EE Architect

Experience with Air Traffic or Aeronautical information a major plus

Previous government experience a plus

Contact: Biju Kurian
biju.kurian@objectstream.com
[ March 09, 2007: Message edited by: Beksy Kurian ]
17 years ago
Identity column is a sqlserver or access option. If you want to create an auto-incrementing column in oracle, you have to use sequence and triggers.

Beksy
18 years ago
Does your database go down at night for cold backups?
Check with your dba to know cold and hot backup timings. It might have worked on hot backup days since the database doesn't have to be down for hot backups.
Beksy
18 years ago
You probably have to restart the service. Go to settings->control panel->administrative tools->services and start the oracle service. You can set it to start automatically each time you reboot the server.

HTH,
Beksy
18 years ago
Hi,
1. if you have installed the client, go back to the CD and select the java console. This looks like the old DBA studio which can view and edit the data or do any dba related stuff. If it is the server, you can access the enterprise manager(dbconsole) through the web. URL similar to http://myhost:5500/em

2. a.Check to see if the database instance has registered with the listener.
Restart the listener.

b. You need to add an entry in tnsnames.ora file located under $ORACLE_HOME/network/admin
looking somewhat like

MYSID =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = myhost)(PORT = 1521))
)
(CONNECT_DATA = (SERVICE_NAME = MYSID))
)

Change the myhost and MYSID (or service name).


Hope it helps!
Beksy
[ July 28, 2005: Message edited by: Beksy Kurian ]
18 years ago
Are you sure that the host name is faizal? Try changing it to the ip address and connect!!

Beksy
18 years ago
Shivani,

here is a sample.

CREATE OR REPLACE TRIGGER "SCHEMA"."MYTRIGGERTEST"
AFTER UPDATE OF "NAME"
ON "TRIGGERTEST"
FOR EACH ROW
BEGIN
do_something;
END;


Beksy
18 years ago
Karthik,
It is a bug!
The following is from oracle:
INSTALLER FAILS WHEN RUNNING ON NEW PENTIUM 4 (IV) PROCESSORS
Workaround:-

1. Create a temporary directory on your server.
2. Copy the contents of the Oracle RDBMS Server CD to the temporary directory created in step 1.
3. Search the directory structure created in step 1 for the existence of the filename symcjit.dll.
4. Rename each copy of the symcjit.dll to symcjit.old.
5. Run the setup.exe from the \install\win32 directory and install Oracle 8.1.x.

Hope that helps!
Beksy
[ March 15, 2005: Message edited by: Beksy Kurian ]
19 years ago
select concat(concat(f_name,m_name),l_name) from table_name where ....


Hope it helps
Beksy
Thanks Shankar for the reply. It is the bean reference. As I said before code(1) works and it is correctly displaying links to acctNum if property 'gts' is anything other than 'Y'. I want that set of code work with display tag instead of struts logic:iterate tag. When I put logic:match, inside displayTag, it is giving the error(no property gts in the bean). I am using the same bean there too.
Awaiting a reply
Beksy
19 years ago
Hi,
I am trying to convert the following code (1) to (2) so that it will use displayTag for presentation.
The logic:match tag inside the displayTag keeps complaining that it cannot find the property in the bean.
The code(1) works. and code(2) works without logic:match tag. I need to use logic:match tag to compare the values and form
(or not form) the links for the account. Does logic:match work with displayTag or am I missing anything in my code?
Please help!
(1)
<bean efine id="acctlist" name="<%=InvestAction.getINVEST_ACCT_KEY()%>" scope="session" />
<logic:iterate id="acct" name="acctlist">
<tr class="even">
<logic:notMatch name="acct" property="gts" value="Y">
<td>
<html:link href="ActDetail.do" paramId="acct" paramName="acct" paramProperty="acctNum">
<bean:write name="acct" property="acctNum" />
</html:link>
</td>
</logic:notMatch>
<logic:match name="acct" property="gts" value="Y">
<td>
<bean:write name="acct" property="acctNum" />
</td>
</logic:match>

</tr>
<tr class="odd"><td colspan=3></tr>
</logic:iterate>


(2)


<display:table id="failed"
requestURI="acctList.do?paging=true"
name="sessionScope.INVEST_ACCT_KEY" pagesize="15" sort="list" export="true">
<logic:notMatch name="InvestAction.getINVEST_ACCT_KEY()" property="gts" value="Y">
<display:column property="acctNum" title="Acct" sortable="true" headerClass="sortable"
href='<%=InvestAction.getUrlRoot() + "ActDetail.do"%>'
paramProperty="acctNum" paramId="acct"/>
</logic:notMatch>
<logic:match name="InvestAction.getINVEST_ACCT_KEY()" property="gts" value="Y">
<display:column property="acctNum" title="Acct"
sortable="true" headerClass="sortable" />
</logic:match>

<display:setProperty name="sort.behavior" value="list"/>
<display:setProperty name="paging.banner.include_first_last" value="true"/>
</display:table>


Thanks
Beksy
[ July 27, 2004: Message edited by: Beksy Kurian ]
19 years ago
1. Oracle startup and shutdown scripts

$ORACLE_HOME/bin/dbstart
$ORACLE_HOME/bin/dbshut

1a)./etc/oratab or /var/opt/oracle/oratab Specify a "Y" in this field for the database


2. As root, create the following OS script file dbora.sh in the
/etc/init.d directory:
#!/bin/sh
ORACLE_HOME="Your Oracle Home"
ORACLE_OWNER=oracle
if [ "$1" = "start" ] ; then
su - $ORACLE_OWNER -c $ORACLE_HOME/bin/dbstart &
exit 0
fi
if [ "$1" = "stop" ] ; then
su - $ORACLE_HOME -c $ORACLE_HOME/bin/dbshut &
exit 0
fi
echo "Usage: $0 [start|stop]"


3. Link the dbora.sh to /etc/rc directory:
# ln -s /etc/init.d/dbora.sh /etc/rc0.d/K10dbora.sh
# ln -s /etc/init.d/dbora.sh /etc/rc2.d/S99dbora.sh


Hope this helps!
Beksy
19 years ago
...and if you really want to know the db_name, use this query
select name from v$database;

Beksy
20 years ago
the following query will display the code.
select text from user_source where name='PROCEDURENAME'
Beksy
20 years ago