Oracle DBA needed for NYC full time

I am looking for an Oracle DBA with RAC and RMAN experience to work full time in New York City. Salary 100k
Please email me to discuss further if interested.
[email protected]

Dude, do you know how to spell SPAM? If you don't know how to spell it, you are probably getting ready to learn what it is.

Similar Messages

  • What cable do I need for a full migration from a 2011 MacBook Pro to a new current one-wireless migration way too slow.?

    What cable do I need for a full migration from a 2011 MacBook Pro to a new current one-wireless migration way too slow.?

    All you need is an Ethernet cable.
    Just plug it into both machines. Don't bother with a crossover cable, just a plain old Ethernet cable will do. The Ethernet ports on the Macs are smart and will adjust appropriately.

  • New Oracle DBA - Need help with backup & restore procedure via RMAN

    Hello everyone,
    I've been a SQL Server DBA for 12 years now, but new to the Oracle space. My first assignment at work was to refresh our training environment with production. So with that said, I took a full backup of our production database via RMAN and backed up the Control File. I then copied both the Control File and full backup from our production environment to training. I followed the procedures listed in the URL below:
    http://www.dba-oracle.com/t_rman_clone+copy_database.htm
    I then connected to RMAN and executed a 'show all' which is as follows:
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    The CONFIGURE CONTROLFILE AUTOBACKUP was set to ON but received a message that the database needed to be mounted, so, I mounted the database and made the changes, but when I shutdown the database and performed the startup nomount again, the settings were gone. Are these settings valid only when the database is mounted? How can I successfully refresh this training environment with production data? I'm at a standstill here so any help would be very much appreciated.
    Thank you,
    Pete

    The CONFIGURE CONTROLFILE AUTOBACKUP was set to ON but received a message that the database needed to be mounted, so, I mounted the database and made the changes, but when I shutdown the database and performed the startup nomount again, the settings were gone. These settings are persistent settings.So these information retain in control files.To reading information from control files database instance must be MOUNT or OPEN stage.Due to you have mount instance and try SHOW ALL command through RMAN.
    Are these settings valid only when the database is mounted? Not only MOUNT also OPEN stage.
    How can I successfully refresh this training environment with production data? I'm at a standstill here so any help would be very much appreciated.
    There are several ways like duplication.But you take full backup from production database using BACKUP DATABASE through rman.In this case you will get also AUTOBACKUP for controlfiles/spfiles.Then copy these backup files and all available archive logs to training server and perform below steps.
    1) You have set properly ORACLE_HOME and ORACLE_SID environment variable.After that first need restore spfile as
    rman target /
    startup force nomount;
    restore spfile from 'autobackup_location';
    startup force nomount;2) Now you have to restore controlfiie as
      rman>restore controlfile from  'autobackup_location';
    rman>alter database mount;
      3) Now need catalog(it means register) all backup files and archivelogs in new restored controlfile as
       rman>catalog start with 'backuplocation';
       4) Finally you can restore and recover your database as below
       rman>restore database;
    rman>recover database;
    rman>alter database open resetlogs;
       If you want restore database to new location then before executing RESTORE DATABASE command you can use SET NEWNAME FOR DATAFILE clause.Firstly refer backup recovery guide in online documentation.

  • How big a hard drive do I need for iMac and Time Machine?

    Sorry if this has been answered elsewhere already. I am going to buy an iMac, probably the new 24" with a 320G internal HDD. I already have one Lacie external 320G HDD so I was wondering whether I can use this for Time Machine backups, or do I need to buy a bigger one? If so, how big? Is there a rule of thumb for working out how much hard drive space you need to have for Time Machine, for instance if I were to buy the 500G iMac what would I need?
    thanks.

    I agree with the "double the size" rule of thumb. You should also consider how much of the 320GB you are actually using and are likely to use in the next year or two. After all, it's the amount of storage you use that matters, not the size of the disk. Disks will very likely be cheaper soon. You should also keep in mind that TM deletes old archive data when it runs out of disk space. So as long as you have more disk space than you have data to back up, TM will work, though you will lose older versions of your data.
    So if your 320GB drive only has 100GB used and you're not the kind of person who eats up disk like there's no tomorrow, the 320GB drive should be fine for now. If you expect that 320GB disk to be full soon then a 750GB TM disk is more like what you need.
    The same logic applies to a 500GB iMac. If you only expect to use 250GB in the next year or two then a 500GB TM disk should be OK. A 1TB drive will be a lot cheaper next year or the year after.

  • Query needed for sorting by time value

    Hi Folks
    We have table it consists two columns like below
    Job_name varchar2(50)
    Scheduled_time date
    The filed scheduled time keep date and time value like below
    25-Jul-2009 4:00:10 AM
    26-Jul-2009 4:00:01 PM
    27-Jul-2009 4:00:00 PM
    28-Jul-2009 4:05:00 PM
    01-Jul-2009 4:06:00 PM
    02-Jun-2009 4:15:40 AM
    We need output as sorting by time value NOT date value. Expected output to be below
    25-Jul-2009 4:00:10 AM
    02-Jun-2009 4:15:40 AM
    27-Jul-2009 4:00:00 PM
    26-Jul-2009 4:00:01 PM
    28-Jul-2009 4:05:00 PM
    01-Jul-2009 4:06:00 PM
    I am using oracle 10G
    Thanks in Advance

    Here's how :
    SQL> create table job_table (job_name varchar2(50) not null, scheduled_time date);
    Table created.
    SQL> insert into job_table
      2  values ('Job_abc',to_date('25-JUL-2009 04:00:00','DD-MON-YYYY HH24:MI:SS'));
    1 row created.
    SQL> insert into job_table
      2  values ('Job_fdw',to_date('02-JUN-2009 04:15:40','DD-MON-YYYY HH24:MI:SS'));
    1 row created.
    SQL> insert into job_table
      2  values ('Job_fxj',to_date('27-JUL-2009 03:59:00','DD-MON-YYYY HH24:MI:SS'));
    1 row created.
    SQL> insert into job_table
      2  values ('Job_rjt',to_date('20-JUL-2009 14:59:00','DD-MON-YYYY HH24:MI:SS'));
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> alter session set nls_date_format='DD-MON-YYYY HH:MI:SS AM';
    Session altered.
    SQL> select job_name, scheduled_time from job_table
      2  order by to_char(scheduled_time,'HH24:MI:SS');
    JOB_NAME                                           SCHEDULED_TIME
    Job_fxj                                            27-JUL-2009 03:59:00 AM
    Job_abc                                            25-JUL-2009 04:00:00 AM
    Job_fdw                                            02-JUN-2009 04:15:40 AM
    Job_rjt                                            20-JUL-2009 02:59:00 PM
    SQL>

  • Oracle DBA Tools for NW Systems ( ABAP +JAVA)

    Hi,
    We have installed PI/XI ( ABAP + JAVA). i have the following questions.
    1)Like SE11, is any tool SAP supplies to maintain JAVA dictionary objects( belonging to SAPSR3DB)?.
    2)Like ST05->Analysis of SQL statement, is any tool SAP supplies to get the explain plan for SQL statements related to SAPSR3DB tables?.
    3)Apart from BR* tools and DBACOCKPIT, what are the SAP tools available for administrate Java(Oracle) dictionary objects?.
    Thanks in advance.
    Thanks.
    Raj.

    Hello Raj,
    1) No there isn't any tool like that as far as i know
    2) You can perform a SQL trace with the OpenSQL monitor or the Wily Interscope agent (which i would recommend). After you have identified the expensive SQL statements you can perform an EXPLAIN PLAN in SQL*Plus or Oracle SQL Developer (free tool). The Java stack is not so comfortable as the ABAP stack in this area.
    -> http://help.sap.com/saphelp_nw04/helpdata/en/24/d4ff0eccf33a49a5c26a280a119b14/content.htm
    3) I don't know any ... in a Java Stack you need to know what you are doing.
    Regards
    Stefan

  • How to fetch Functional Area for FTE (Full Time Equivalent)

    Hi
    We have a report that needs to be developed--FTEs for each Functional Area.
    We are trying to fetch Functional Area from Employee's Master Cost Center. Our structure has Employee; Master Cost Center, Functional Area and FTE. However this structure is not showing any values. What is the way out. We are on BI-7.0 and we are using standard BI Objects [0Employee; 0Cost Center].
    Appreciate your suggestion.
    Regards
    Srinivas

    Hi
    I wish to provide more information to you.
    We are implementing Integrated Planning (BI 7.0).
    Even though Functional Area is a Navigational Attribute of Cost Center when I am trying to establish Characteristic Relationship between Cost Center and Functional Area. I am not seeing Functional Area for the Cost Center.
    I believe if we could establish the relationship we can fetch the relevant report from the layout.
    Regards
    Srinivas

  • Oracle ETL Developer (Full time job) - Toronto

    We are looking for two Oracle Data Warehousing /ETL Consultants (full time) with the following skills to start immediately:
    - Strong Data warehousing skills.
    - Previous experience in data architecture.
    - Good knowledge of ETL processes and strong ETL skills.
    - Proficiency in using Oracle Data Warehouse Builder version 9.0.
    - Proficiency in using Discoverer.
    - Reasonable grasp of tuning/performance issues.
    - Good communications & interpersonal skills.
    Location: Etobicoke, Ontario, Canada
    Salary: 60-70K plus benefits (negotiable depending on experience)
    Full time
    Please respond to:
    Rohini Mehtani
    [email protected]
    416-695-7525 ext: 229

    This is not a free job posting board. Try Dice or Hotjobs or Monster or any of the myriad of job sites. Please don't start crapping up this site with your posts.
    Unless you have a job in New York.

  • Oracle ETL developer (Full time) - Toronto

    We are looking for two Oracle Data Warehousing /ETL Consultants (full time) with the following skills to start immediately:
    - Strong Data warehousing skills.
    - Previous experience in data architecture.
    - Good knowledge of ETL processes and strong ETL skills.
    - Proficiency in using Oracle Data Warehouse Builder version 9.0.
    - Proficiency in using Discoverer.
    - Reasonable grasp of tuning/performance issues.
    - Good communications & interpersonal skills.
    Location: Etobicoke, Ontario, Canada
    Salary: 60-70K plus benefits
    Full time
    Please respond to:
    Rohini Mehtani
    [email protected]
    416-695-7525 ext: 229

    This is not a free job posting board. Try Dice or Hotjobs or Monster or any of the myriad of job sites. Please don't start crapping up this site with your posts.
    Unless you have a job in New York.

  • Urgent Full Time Requirement for SAP Senior FI/CO Analyst

    Hi,
    Any one looking for Urgent Full Time Requirement for SAP Senior FI/CO Analyst
    Moderator: This is not job board. Upon second violation your user will be banned

    Hi,
    Any one looking for Urgent Full Time Requirement for SAP Senior FI/CO Analyst
    Moderator: This is not job board. Upon second violation your user will be banned

  • Full-Time Labview Design Verification Engineer in Phoenix, Arizona area

    I'm looking for a design verification engineer experienced in Labview programming for a full-time position in Tempe, AZ.  The department designs and develops power amplifier (PA) and front end modules in support of cellular and wireless products.  The job scope includes devising and implementing algorithms for characterizing critical PA performance metrics.  You would work closely with the test and product engineering to define test development plans and author a specification compliance matrix.
    The individual applying should have:
    Working knowledge of RF test equipment and their respective programming manuals for GPIB/SCPI commands.  This includes but is not limited to power meters, network analyzers, spectrum analyzers, oscilloscopes, power supplies, waveform generators, and load pull systems.
    Ability to thoroughly and systematically research and evaluate new hardware for added functionality, improved speed and accuracy.
    Ability to identify and debug hardware/software issues.  Prior experience in PA design, test, development and/or applications.  Deep understanding of PA specifications and parameters, such as gain, PAE, ruggedness, harmonics, stability, etc.
    Familiarity with system and spectrum specifications for GMSK, EDGE and WCDMA modulation schemes, such as ACPR, ALT, Mod ORFS, SW ORFS, EVM, etc.
     Strong experience in Excel or equivalent software for setting up and manipulating database files.
    Ability to work effectively in a cross functional team consisting of design, product and test engineers.
    Best regards,
    Charles Reed
    480-413-5652

    Hello:
    I am certified LabVIEW developer looking for RF related experience.  I have been involved in a project testing a PA at Motorola, and have taken some courses in school designing a low noise amplifier.  Attached is my resume, let me know if you have any questions.
    -JC
    Attachments:
    JoeyCao2007.doc ‏31 KB

  • Job Opportunity : Full-time Business Catalyst Developer

    Hi there everyone!
    Online Medical, an Australian web development company based in the Sunshine Coast, is looking for a full-time BC designer / developer to join the team.  Immediate start and great chance for advancement. 
    More details at :
    http://www.onlinemedical.com.au/careers

    Hi Creative Designer and Business Catalyst Expert here,
    I can help you, as I have very good experience with Adobe Business Catalyst.
    Jignesh is a complete BC e-commerce and BC web-marketing service provider with strong credentials.  I am a master in Customization in Adobe Business Catalyst and my customers have been very pleased with my work, as evidenced by my superior feedback ratings. 
    For further discuss please add me on Skype : Designer.jigs or email at [email protected]
    Thank you in advance for considering me for your project!

  • Would you like to work as a Full Time SAP CRM Consultant

    If You are in USA and looking for a Change or Students who did their Interns into SAP CRM and Looking for a Full Time Position.they can reach me on 908-548-0708
    Regards,
    Chintan

    <b>Forum Name</b>: Rich Internet Application Development.
    <b>Description Text</b>: General questions about Rich Internet Applications.
    <b>Forum Category</b>: Scripting Languages.
    <b>Location of Forum</b>: Scripting Languages.
    <b>Award Points (Y/N)</b>: Y.
    <b>Corresponding Development/Content Area</b>: Scripting Languages.
    <b>Name and User ID of Moderators</b>:
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=eqxfqtptf%2fc%3d">alvaro Tejada Galindo</a>
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=csxelp5hzpi%3d">abesh Bhattacharjee</a>
    <b>Name of Sponsoring Product Manager/Solution Manager</b>: <a href="https://wiki.sdn.sap.com/wiki/display/EmTech/Scripting+Languages">Scripting Languages WIKI</a>
    <b>Reason for the Request</b>: RIA's like Flex, AIR and OpenLazlo are getting bigger in the market. They can be linked to SAP to make richer UI's. A RIA's forum would help newbies to get in touch with those new technologies and also, would help Scripting Languages authors to share knowlegde.
    My approach -;)
    Greetings,
    Blag.

  • Intel 6235 (Low profile vs. non low profile) Which do I need for gt70?

    What's the difference between the two?
    Which would is recommended for a A gt70?

    Low profile is the thinner design for thinnest Ultrabook designs. That is not needed for a full size notebook like GT70.

  • DBAShell - New Open Source Project for Oracle DBA's

    I'd like to have this project included in the Open Source Oracle tools list at: http://www.oracle.com/technology/community/opensource_projects.html
    I’'ve been an Oracle DBA for quite some time (since 7.0.13) and a developer for many years. One of the things I'’ve always wished for was an easier way to set up environment variables for different Oracle Home’s and a way to provide passwords to scripts without embedding them in plain-view.
    About 3 years ago, I started a set of functions and scripts at my company that did exactly just that and provided many more functions for things like checking database status, running scripts quietly unless errors are detected, running actions in parallel (like fast shutdowns at once, or multiple analyzes), restarting databases in a guaranteed fashion, aliases to common folder locations, etc..
    About a month ago, after putting all this time and effort into these scripts and using them in production all this time, I realized I wanted more out of the scripts like support for other databases and thought that it would be best if I gave it new life as an Open Source project.
    So that is how http://sourceforge.net/projects/dbashell/ was started. Now it’s in a second release (DBAShell 0.85) that is more modular and would allow other people to easily add support for other OS’s, other Shells, and other Databases.
    Here is a description of the project from the latest news item:
    DBAShell is a project based around Shell functions and scripts designed to make it easy for DBA's to use Databases in a command line environment. Currently supported is Oracle with ksh and bash on AIX, Solaris, Linux. The code base itself is 3 years old and has been in use in Production environments all of that time.
    Features include:
    * Automatic setting of all environment variables based on SID requested.
    * Manage PATH's and other path like variables for each ORACLE_HOME needed.
    * Run scripts with stored passwords (no more hard-coding of passwords!!)
    * Automatically set SID based on Script location (makes it easier to share scripts between SID's)
    * manage temporary script output and check for oracle errors in output
    * check database status and versions from scripts
    * stop/start databases in parallel (faster startup)
    * compile all database objects
    * analyze objects in parallel (Faster analyzes)
    * set aliases and variables for common SID areas, etc..
    * many helpful commands for common Oracle tasks
    Over a thousand people have already downloaded the prior release and more are downloading every hour.
    I'm seeking feedback from anybody that would be willing to take a look at the project, trying it out, give me any feedback you have on it, and perhaps even direct me to where I could best promote this project.
    I wrote a tutorial that shows at a glance some of the more useful features of DBAShell:
    http://sourceforge.net/docman/display_doc.php?docid=34041&group_id=170224
    Main site:
    http://sourceforge.net/projects/dbashell/
    Documentation: http://sourceforge.net/docman/display_doc.php?docid=33704&group_id=170224
    Download:
    http://prdownloads.sourceforge.net/dbashell/dbashell-0.85.tar.gz?download

    Always glad to have people thinking about the poor DBA's. Usually, the developers get most of the attention in open source.

Maybe you are looking for

  • Installation of CC&B 2.3

    Hi all I am trying to install CC&B 2.3 on an OEL virtual machine. When installing Framework 2.2 I get the following error: Configuration file /spl/DEMO/etc/ENVIRON.INI is created. Execute splenviron.sh -e DEMO to setup environment variables. BEADIR=/

  • Not able to move iTunes library to Mac OS 10.5.2 - causes Finder crashes

    I have struggled most of the day trying to do what in the past has always been very simple - move iTunes library to a new computer/OS. Old eMac housed the library, xml and album art files on the main hard drive. My music library (all the song files)

  • Center Text in TextField Dynamically

    How on earth do you center text within a text field dynamically....e.g. textField.align = "center" or textField.autoSize = "center" ....nothing works? BTW...is it just me or is the adobe site just plain slow and almost unusable to everyone else too.

  • SOAP Header in web dynpro

    Hi, Iam using web service model. I have to send some parameters through SOAP header. How can i do this?? pls help.

  • Problem with updates

    The following CC apps will only update to 50%: Ae, Fi, Id, Pl and Pr.  I've tried for two days but nothing has changed.  Other apps updated successfully when these wouldn't. I'm using 64bit Windows 8. Thanks for any help. Dave