Showing posts with label Oracle. Show all posts
Showing posts with label Oracle. Show all posts

Friday, 26 February 2016

Skills for a Computer EngineerIn Feburary 2016 26,

In Feburary 2016 26,
A computer engineer must have extensive technical skills to design and choose software components for a project. This includes understanding technical language, such as C++, Java, JavaScript, HTML, CSS, SERVLET and UML design. It also includes recognizing the major differences between operating systems like Windows, DOS, Mac and Linux. Some computer engineers also work with computer databases like MySQL, Access and Oracle.
Communication Skills
Communication and interaction is a vital part of a computer engineer's job. He must interact with managers or business owners for company projects or directly with customers, if the computer engineer is working on developing solutions for customers. The computer engineer must communicate the possibilities of the given project budget, update customers or managers on the progress of projects and be able to conduct presentations on the computer development projects.
Research and Training Skills
A computer engineer must also have extensive research and training skills, especially if placed in a managerial position. Computer sciences and possibilities in the information technology and computer industry are constantly evolving and expanding. The computer engineer must be able to research and learn new programming options and skills to provide the best possible outcome for companies or customers. The computer engineer should also be able to train coworkers or employees in these new skills and programming options.
Decision-Making and Troubleshooting Skills
Computer engineers frequently work with the design and development process of computer software on behalf of customers or within a company. The computer engineer must be able to make the best decisions for the program development project in question. This is done by combining the technical skills and knowledge with the demands and needs of the customers or company. If something does not work throughout the design and development process, the computer engineer must also be able to troubleshoot to repair the issues. This can be a clash of software programs or operation systems, for instance. These skills need to be honed for computer engineer manager positions.
In Feburary 2016 26,

Saturday, 6 February 2016

How to Convert From Clob to Varchar2 in OracleIn Feburary 2016 06,

In Feburary 2016 06,
Start Oracle’s SQL*Plus program.
Type the following statement into SQL*Plus:SELECT dbms_lob.substr( clob_field, 4000, 1 ) FROM my_table;For “clob_field,” substitute the name of the clob field you want to convert to varchar2. Substitute the name of your data table for “my_table.” For example, if the clob field name is “budget_memo” and the table’s name is “budgets,” type the following statement:SELECT dbms_lob.substr( budget_memo, 4000, 1 ) FROM budgets;
Press 'Enter.' SQL*Plus executes the statement.
In Feburary 2016 06,