Dbms_job: question about broken jobs

Hi.
I have defined the following job:
VARIABLE jobno NUMBER
BEGIN
DBMS_JOB.SUBMIT (:jobno,'test_proc;',SYSDATE,'SYSDATE + 5/86400');
COMMIT;
END;
When the procedure is invalid the job queue tries to start it 16 times and marks the job as broken.
Is there an option that dbms_job does an automatic recompile of the procedure after the job has the broken status?
Thanks
Markus

you could do a two-step job to compile the proc, then execute it.
VARIABLE jobno NUMBER
BEGIN
DBMS_JOB.SUBMIT (:jobno,'BEGIN
ALTER PROCEDURE test_proc COMPILE;
test_proc;
END',SYSDATE,'SYSDATE + 5/86400');
COMMIT;
END;

Similar Messages

  • Question About Broken Link

    How do I determine the cause of an item being placed in the broken link list after doing a site check?

    Rick and Ben:
    You have been very patient with me
    Guess at 81 I am starting to lose it - the code and screen shots I put in my email apparently did not make the trip
    I will study how to use the forum tools and get back to you if I grasp the procedures required
    Thanks again
    Tom
    Date: Thu, 19 Dec 2013 07:49:50 -0800
    From: [email protected]
    To: [email protected]
    Subject: Question About Broken Link
        Re: Question About Broken Link
        created by Rick Gerard in Dreamweaver support forum - View the full discussion
    You are trying to post code from an e-mail, that won't work. You ahve to be on the forum and use the tools there to post code.
    Copy and post the suspect code and we can help. Otherwise we are completely guessing.
    From what Ben says you have a typo or some missing files on your server.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5944607#5944607
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5944607#5944607
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5944607#5944607. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Dreamweaver support forum at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Question about this job SXMS_REFRESH_ADAPTER_STATUS

    Hi experts,
        For what is this job: SXMS_REFRESH_ADAPTER_STATUS ?? The SAP people recommend me to schedule this jobs in my XI environment but I check over the internet to find some information of it but I don't find much. Someone can explain me the uses about this job and what are the risk if I use it? if any..
    Thanks a lot people!

    Hi, Its not to delete the messages, i was searching thru SDN and found this -
    the idoc-adapter converts the payload to an idoc and creates an rfc-call in background task. This call is managed by the tRFC schedules, which works in a different task than the xi runtime.
    After calling the trfc-layer, the xi-message is completed and there is no chance for the xi-runtime to check if the message was successfully transfered to the receiver system. The RFC-Schedules checks regulary the receiver resources, if one is free the rfc-call is transfered to the receiver system. The report SXMS_REFRESH_ADAPTER_STATUS is scheduled in background task and checks if the calls are executed by the rfc-Scheduler. There is no other technical solution possible here for a faster procession. It is an asynchronous protocol, not a synchronous.
    Hope this helps.
    Regards,
    Balaji.M

  • Question about DB13 jobs under MSCS environment

    Hi,
    I have migrated my system to cluster hardware.It´s two nodes windows 2003 server R2 x64, with MSCS and Oracle 10g.
    I need run DB13 operations, so I have installed the standalone gateway following note 657999. Gateway is running anda RFC works fine.
    Now SAP group is running in node A and Oracle group is running in node B, and when I try to run a database check through DB13 job returns this log:
    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000210, user ID CONSULTORAC)
    No application server found on database host - rsh/Gateway will be used
    Ejecución del comando lógico BRCONNECT En máquina ACDCPDPSR3002
    Parámetros: -u / -jid CHECK20101201092709 -c -f check
    BR0801I BRCONNECT 7.00 (16)
    BR0252E Function fopen() failed for 'J:oracleACPsapcheckceernjjz.chk' at location main-9
    BR0253E errno 13: Permission denied
    BR0121E Processing of log file J:oracleACPsapcheckceernjjz.chk failed
    BR0280I BRCONNECT time stamp: 2010-12-01 09.27.11
    BR0301E SQL error -12560 at location db_connect-2, SQL statement:
    'CONNECT /'
    ORA-12560: TNS:protocol adapter error
    BR0310E Connect to database instance ACP failed
    BR0806I End of BRCONNECT processing: ceernjjz.chk2010-12-01 09.27.11
    BR0280I BRCONNECT time stamp: 2010-12-01 09.27.11
    BR0804I BRCONNECT terminated with errors
    External program terminated with exit code 3
    BRCONNECT returned error status E
    Job finished
    Error 1: BR0252E Function fopen() failed for 'J:oracleACPsapcheckceernjjz.chk' at location main-9
    Brconnect is trying to write .chk file in SAPDATA_HOME directory and it can´t. When I execute the command at OS level in node A (where SAP group is running) I get same error, but when I execute same command in node B it run without problems.
    Error 2: 'CONNECT /' ORA-12560: TNS:protocol adapter error
    No listener.
    SAP try to run commands on the node where SAP group is running, and it can´t works with Oracle group resources like listener or sapdata_home disk.
    My question, is it possible execute DB13 actions whene each group is running in different nodes?
    If is possible, how can I solve my problem?
    Thanks in advance.
    Pablo.

    Hello,
    As stated in point 7 within Note 446172 :
    7.  In Windows, make sure that the USER environment variable for
        SAPSERVICE<sid> contains <sid>ADM. This variable controls the user
        under which the external command is started. See also Note 556232.
    regards,
    John Feely

  • Very simple question about DBMS_SCHEDULER jobs

    Hi,
    I have a scheduled job and its repeat interval is every 30 min for all hours.
    And also assume that my job is started at 11 am but it couldnt be completed till 11.30 am and it is finished at 11.45 am.
    What will be the scheduled execution on 11.30 am? It will start just after previous one finished?

    Create a table for testing:
    SQL> create table scheduler (starttime date, endtime date);
    Table created.
    SQL>
    Create a testing procedure:
    SQL> !cat wait_a_while.sql
    create or replace procedure wait_a_while(waittime IN int)as
      l_starttime date;
    begin
      select sysdate into l_starttime from dual;
      insert into scheduler (starttime) values(l_starttime);
      dbms_lock.sleep(waittime);
      update scheduler set endtime =(select sysdate from dual) where starttime=l_starttime;
      commit;
    end;
    SQL>
    Schedule a job every minute:
    begin
       dbms_scheduler.create_job(job_name=>'wait_a_while_job',
                                 job_type=>'PLSQL_BLOCK',
                                 job_action=>'begin
                                                martijn.wait_a_while(120);
                                              end;',
                                 start_date=>sysdate+1/(24*60),
                                 repeat_interval=>'FREQ=minutely;interval=1');
       dbms_scheduler.enable('wait_a_while_job');
       commit;
    end;
    Let this go for a while, and query the table:
    SQL> select * from scheduler order by starttime;
    STARTTIME            ENDTIME
    2013-DEC-14 14:59:59 2013-DEC-14 15:00:02
    2013-DEC-14 15:00:24 2013-DEC-14 15:01:24
    2013-DEC-14 15:33:09 2013-DEC-14 15:33:10
    2013-DEC-14 15:36:40 2013-DEC-14 15:38:40
    2013-DEC-14 15:38:40 2013-DEC-14 15:40:40
    2013-DEC-14 15:40:40 2013-DEC-14 15:42:40
    2013-DEC-14 15:42:40 2013-DEC-14 15:44:40
    2013-DEC-14 15:44:40 2013-DEC-14 15:46:40
    8 rows selected.
    SQL>
    So.....play around a little.
    But I would say that the next job waits until the first job finished.

  • A question about job

    Hi Expert,
    I have a question about the job count in the system. If I create a lot of jobs at the same time, for example, 10,000 or even more. What will happend? Is this possible? Does system have any limitation over the job count at the same time?
    Thanks in advance,
    Best Regards, Johnney.
    Edited by: Johnney Wu on Jun 8, 2009 4:08 PM

    hi ,
    please check this link...
    Max jobs
    hope it helps

  • A question about Job schdueling in cluster

    hi all
    I have a weblogic cluster and want to use the build-in commonj support to do some scheduling work.the pdf version document "Timer and Work Manager API (CommonJ) Programmer's Guide" has something like this on page 7,"The Timer Listener class must be pesent in the server system classpath" .does it mean that I should not put it in web-inf/classes?instead, I should jar it and put the jar somewhere inside wls_home/server/lib or ext ?
    thanks a lot :-]

    hi mchellap
    here is another question about timers in the cluster,
    1) I implemented a serializable timerlistener which I want to make it cluster aware
    2) put the JNDI items "timer/MyTimer" in web.xml which is to commonj.timers.TimerManager
    3) I created a datasource on cluster in console with the tables created in db
    after the cluster is started,the job is to print out the "new Date()" in console every 40 second,and it worked very well
    I am expecting something in the db table,but there is nothing,not even a exception ,anything wrong here?
    thanks a lot

  • Query regarding broken jobs

    I am using Oracle 10.2.0.2 on Solaris
    There are a number of job which run continously every few seconds during deployment and a few of them fail over.
    I am facing lock issues in the database so I was wondering if the new sessions created by the DBMS_JOB package would be dropped automatically if the jobs fail and also whether the locks which were used by the jobs would be automatically released?

    Hi,
    any idea about how to fix it ?Most shops monitor for broken jobs, and incoke scripts to repair them automatically: http://www.dba-oracle.com/t_verifying_auditing_replication.htm
    Hope this answers your question . . .
    Donald K. Burleson
    Oracle Press author
    Author of "Oracle Tuning: The Definitive Reference":
    http://www.dba-oracle.com/bp/s_oracle_tuning_book.htm

  • Question about Project Lockdown

    I've been reading through Arup Nanda's "Project Lockdown". I understand all of his rationals and procedures, but a few things leave me feeling a bit uneasy. Maybe it's just fear of the "unknown unknowns". In particular is the discussion on changing the unix access profiles for the oracle binaries. I have this uneasy feeling that if I were to implement those particular suggestions, it would end up biting me somewhere down the road.
    Has anyone implemented all of the suggestions in this document? If so, what have been your experiences?

    Arup Nanda_2 wrote:
    Hi Ed,
    Thanks Mark for pointing me out to this.
    I have been using that for more than 8 or 9 years now, without any side effects. But as Emre Baransel reported that although he has been following that without any untoward effects, you should take every advise in the specific context of your environment. I have tried to put all caveats there; but there is no way for me to check all possible comobinations.
    For instance, one of the advises is to remove executable permissions from extjob executable. If you are not using extrnal jobs from the database (99% of people don't), heeding that advise does nothing to your activities. But if you do external jobs, they are broken now. I have made that clear in the article; but I can't be sure if the reader will pay attention to that. But if you don't use external jobs, by changing the permissions you just closed a major vulnerability without applying the CPU patch, which may or may not close all the vulnerabilities.
    Another is the case of nmb and nmo executables. If you are using Enterprise Manager to manage the O/S as well, then changing those executables will no longer allow you to do that. But if you don't do that particular activity (most don't), you again closed a major vulnerabillity without affecting your functionality.
    For anyone who has ever authored anything, one thing is clear - the work is like broadcast, not point to point transmission. Even point-to-point. "If you explain something so clearly that no one can misunderstand, someone will".
    It's not consulting which is situation specific. So, any work which is not prepared in context of a specific situation must be taken with that disclaimer - your mileage may vary. Understanding and testing is a must before committing the work.
    Hope this helps.
    ArupThanks for the response. Besides worrying about the "unknown unknowns" I also have a question about applying patches, especially the quarterly CPUs. Since, at some level, applying a patch is simply overlaying a specific file with a newer version, will this cause permissions to revert to default? Would we have to go through the process after applying a patch? I'll go back and re-read the original doc several more times to make sure I have a good grasp of what's going on here.

  • Follow-up question about forms and SharePoint Online

    I asked a question about life after InfoPath earlier, and got a good answer:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/fb23b3d9-8a09-4267-aab5-09929f6a3082/life-after-infopath-seeking-advice
    After looking at all of the limitations of SharePoint Online, I'm wondering how developers are dealing with the limitations. Lets say you are asked to develop something that has complex logic, including fetching data from external web services, dynamically
    displaying parts of a process to people depending on role, and ending up with a printable document. In our on-premises environment, InfoPath is well suited to this task, with some code behind for some things. Or, if not using InfoPath, we would use application
    pages and workflow.
    Neither of those are available in SharePoint Online, so what would you do?

    Some things, such as the conditional display of content, can be done via JavaScript. More advanced items, such as integrating external web services would likely require a SharePoint "app". A SharePoint app is essentially a link to a separate site
    that is running an asp.net web app (or PHP, or whatever). This asp.net site can do anything it needs with any web services, or conditional formatting, or anything. Because it's registered as a SharePoint app, it can also call back into the SharePoint site
    and work with data. So, a SharePoint App could present the user with a robust form that simply sends the data back to a SharePoint list. The SharePoint app can also be surfaced on the SharePoint site itself in an iframe, so the user won't know that the form
    is hosted by another server.
    By the way, the ideas behind the app model permeate the entire SharePoint environment: instead of having the SharePoint server itself run all kinds of custom business logic, that workload is handled by other servers, so the SharePoint servers can be focused
    on running the core bits of SharePoint. InfoPath puts a large load on the servers, so it's out.  XSLT list views also put a load on the server, so they're also out. SSRS is an amazingly fantastic tool, but is not supported in the cloud (and there's no
    alternative). Timer jobs, event handlers, workflow, and many other things have been re-architected to take the load off the SharePoint servers.
    Mike G.

  • Questions about Indexing and Using an Indexing POA

    Although I have only about 50 users, at least 15 of them have in excess of 100,000 messages in their accounts and the POA (version 7.0.2) is regularly slowing to a crawl. (I just know that plans for revolution are fomenting!) I have embarked on a campaign to reduce these accounts by archiving everything off to get mail accounts down to 3000 or fewer pieces. I have achieved user buy-in, but have worked on only a few users so far.
    In another closely related thread, it was suggested to me that the PO speed issues relate to broken indexes. And I suspect that given so many messages, the indexes were never getting fully rebuilt with the default QF POA settings. I am trying to fix that situation in addition to reducing mail account sizes. So, I have set up a second POA on another server and dedicated it to the indexing task. The /qfinterval is set for 1 hour, other /qf switches at default. The POA-QF does no mail delivery, but it does do nightly user upkeep.
    The POA-QF seems to be steadily working away and making progress at reducing the number of unindexed messages. However, I have questions about what I am seeing and what more I can do:
    1. Is the progress I am seeing real progress? For example I have a user with over 100,000 messages to be indexed and every time I check the logs, the count drops by about 500 messages per hourly QF cycle. I assume that if I just let it keep running, it will eventually get caught up and fixed. Not only with this user, but with all the others as well. Will my patience (and theirs) be rewarded? Are there any gotchas I need to prepare for?
    2. One user has recently had virtually all of her messages successfully moved to archive. I can see them in the Archive, and do not see them in the online account. However, now over a week later, QF still shows >130,000 items still left to index for that user. The POA-QF is making slow, steady progress reducing that number, but why is this user's QF count still so high? Does it just need more time, or is there something amiss for this user?
    3. I may want to rebuild indexes for single users from scratch. I have seen the TID 3105742 which tells how to do this: Essentially you turn off mail delivery functions, and make some other switch changes to dedicate the POA to indexing for just a single user, and then you let the POA rebuild the indexes. The implication of that scenario is that the POA is now enjoying exclusive access to the user's databases.
    If I want to use my secondary POA-QF to rebuild a user's index from scratch, does the main POA have to be offline and the user out of GWise? That is, Does the QF process require exclusive access in order to rebuild indexes from scratch?
    Thanks for any thoughts or suggestions.
    Peter Smick

    pgsmick wrote:
    > 1. Is the progress I am seeing real progress? For example I have a user with
    > over 100,000 messages to be indexed and every time I check the logs, the count
    > drops by about 500 messages per hourly QF cycle. I assume that if I just let
    > it keep running, it will eventually get caught up and fixed. Not only with
    > this user, but with all the others as well. Will my patience (and theirs) be
    > rewarded? Are there any gotchas I need to prepare for?
    Set this switch for this indexing POA - /qflevel=999 - this will index
    everything in one run. It will take a long time, but with no qflevel switch you
    are indeed only indexing 500 messages at a time, and if the user has that much
    mail, it might never really catch up.
    >
    > 2. One user has recently had virtually all of her messages successfully moved
    > to archive. I can see them in the Archive, and do not see them in the online
    > account. However, now over a week later, QF still shows >130,000 items still
    > left to index for that user. The POA-QF is making slow, steady progress
    > reducing that number, but why is this user's QF count still so high? Does it
    > just need more time, or is there something amiss for this user?
    >
    This is odd, because really the index count should drop to nothing, but with the
    above switch this might get resolved as well.
    > 3. I may want to rebuild indexes for single users from scratch. I have seen
    > the TID 3105742 which tells how to do this: Essentially you turn off mail
    > delivery functions, and make some other switch changes to dedicate the POA to
    > indexing for just a single user, and then you let the POA rebuild the indexes.
    > The implication of that scenario is that the POA is now enjoying exclusive
    > access to the user's databases.
    Not really - the POA is not enjoying exclusive access to the user's database,
    the indexer is just avoiding an attempt to index anything else.
    > If I want to use my secondary POA-QF to rebuild a user's index from scratch,
    > does the main POA have to be offline and the user out of GWise? That is, Does
    > the QF process require exclusive access in order to rebuild indexes from
    > scratch?
    No - QF never requires exclusive access. That said, you may find that an
    extremely vigorous QF can cause slowdowns for the user.
    Danita
    Novell Knowledge Partner
    Moving GroupWise to Linux?
    http://www.caledonia.net/gwmove.html

  • Legality questions about Home Sharing

    I have some legality questions about Apple's Home Sharing technology.
    As I understand it, you can share (that is, copy it from one computer to another) your music, movies, applications and other iTunes-managed files amongst five computers. The only 'trick' is that each computer must have an iTunes Store account and must be logged in in order for it to work.
    My question concerns the copying aspect and the legality of it. For content that was purchased through the iTunes Store I can see how Home Sharing can provide a limitation on content sharing, since all of the machines would need to be connected to Apple's servers in order for the validation process to happen. But what about content that was added to iTunes through other means, e.g., ripping my own CDs or converting my DVDs? These items can still be copied via Home Sharing and as there's no DRM on them there's no way they can be protected against "illegal" or "unauthorized" use.
    It was my understanding that if I gave a copy of a song to someone else, that's illegal. Apple's Home Sharing technology seems to facilitate this action. If I rip a CD or DVD into iTunes and someone copies it out, isn't that making an illegal copy? Can I be held liable for distribution of content?
    And how far does this extend? If I live in a house with four unrelated people, are they legally (?) allowed to copy music and media amongst each another? Is there a perceived or actual difference between using Home Sharing to copy a movie versus, say, using a USB flash drive? And what if one of them moves out? Am I legally obligated to go through that person's hard drive and remove content that they copied from me before they leave the building?
    Does Home Sharing somehow retroactively change the copyright application on a given CD or DVD? Most of my CDs and DVDs contain notices and warnings against distributing copies. Can these warnings now be ignored, or at least amended with "...unless you're using iTunes Home Sharing" at the ends of them?
    I am not trying to stir up a hornet's nest here. I'm only trying to better understand the legal issues surrounding Home Sharing and particularly how they relate to unprotected content. It seems very contradictory that the RIAA and MPAA would be fighting so hard against peer-to-peer services like BitTorrent and Gnutella while apparently allowing peer-to-peer services through iTunes Home Sharing.
    Furthermore, I also understand that the intention of this system was to allow families who are living together to have common access to all of the "household" music, but my issues aren't about this. I envision, for example, a college dorm building where there's several hundred people living together on the same network subnet, and all of them have Home Sharing enabled and everyone is copying thousands and thousands of songs to/from one another. Is this now legal?
    Any insights would be appreciated. Thanks.

    If I rip a CD or DVD into iTunes and someone copies it out, isn't that making an illegal copy?
    RIPping of commercial, encrypted DVDs (most of them) is illegal to begin with. Or rather, breaking the encryption on a DVD is illegal and in order to RIP the DVD, you must break the encryption. SO you have already "broken the law" by having a copy on your computer.
    Most of my CDs and DVDs contain notices and warnings against distributing copies.
    Most of your DVDs have a notice about even simply making a copy, not only distributing copies.
    Much of your post has been cussed and discussed by many, many people (lawyers, corporations, organizations, individuals, etc.) and no one has come (or likely ever will come) to a complete agreement.
    Generally, "sharing" in the same house hold amongst family members seems to be okay. Outside the same household/family is almost always not okay.
    I envision, for example, a college dorm building where there's several hundred people living together on the same network subnet, and all of them have Home Sharing enabled and everyone is copying thousands and thousands of songs to/from one another. Is this now legal?
    No.
    This is exactly what Napster was and why they were sued & shut down.
    I imagine Apple lawyers have done their homework as well as consulted with the labels to discuss these exact issues.
    And it's called "Home Sharing" to indicate that it is not "Dorm Sharing" or "Workplace Sharing", or even simply "Library Sharing"etc. even though it may be possible to use it in other places than the Home.
    Users on other computers need to know your iTunes ID and password to enable it Home Sharing. Likely this is how Apple got the lables to be okay with it.
    Are you gonna give (and get) dozens/hundreds/thousands/any other users your iTunesID & password?
    You can contact Apple Legal here -> http://www.apple.com/legal

  • Questions about mac mini iTunes server, streaming to macbook pro, ipads, etc.

    I'm thinking about getting a mac mini to work with my NAS as a iTunes server. I have a bunch of questions about this. I will have two iPhones, a few iPads, and a laptop that will be accessing the files. I have iTunes match. This is basically to keep an always on computer for hosting the music/movies. My questions are as follows . . .
    #1 Are there any good, comprehensive guides to show you how to do this?
    #2 Can the movies be accessed when not at home on the shared network?
    #3 Can the iPads or the macbook pro download the shared movies to be stored locally?
    #4 Back to #3, how will it work on my macbook pro with listening to music (I have iTunes match)? Say i go to library and I break out my macbook pro and I don't have internet. What happens if I download music while at home onto my macbook pro to listen to it when I go to the library? Will i start a new library on my macbook pro? How will that mesh with the home server when I come back.
    #5 Is there a way to mirror files or folders? So something that I have on my macbook pro will also mirror on the home server.
    Thanks for your help on this. I'll post any follow up questions.

    seanfenton wrote:
    1. I want to replace the Optical drive with a 2TB SATA. can I use this 2.5 inch?
    I do not know if it is the same model number, but this one will work in your MBP:
    http://eshop.macsales.com/item/SEAGATE%20OWC/ST2000LM003M/
    2. I want to replace the HD with a 128GB SSD 840. When I replace these drives, will my OS still be in tact? I have never done this job before.
    No. You will have to format the drives in Disk Utility>Erase to Mac OS Extended (Journaled) and then install the OSX by using the original install disks.
    3.) I want to replace the ram sticks to max capacity. This is 2 2GB sticks, Correct?
    No.  An early 17" 2008 MBP will accept 6GB RAM with the following specifications:  200-pin PC2-5300 (667MHz) DDR2 SO-DIMM.  The best sources of Mac compatible RAM are OWC and Crucial.
    4.) Most difficult...
    I want to extend the monitor wirelessly to a projector. I thought about using Apple TV and Airplay. However, support for airplay is for MacBooks 2011 and newer. I thought of using a PS3 and the media server, but I think this brings on a format compatibility issue. (my library is so large I could not afford to convert all my movies to MP4.) So, how would you recommend I put my extended monitor with VLC player onto a projector?
    Could I possibly connect the MBP to a Mac Mini as an extension? would this work natively? I would rather use a VGA cord than F with 3rd party app BS.
    Cannot help you there.
    5..) I want to Bypass iTunes this time around. I would prefer to use Finder and VLC to manage all of my music. I mostly play all my music on shuffle, so, could I create a playlist on VLC with all of my music and play it randomly? (im sure this is possible but i'd like to organize all my plans with confirmation.)
    You are not obligated to use iTunes.
    6.) Can i upgrade the keyboard to backlit? i've read that this is possible.
    All MBPs have back lighted keyboards.  Your either needs a NVRAM reset or a repair.
    Ciao.

  • Question about Video Cards on Laptops

     Hi everyone, and sorry if I post this in the wrong area. I own a few computers, some are consider ancient and others are somewhat old but can run Windows XP just fine. I have a question about the computers in the stores today.
    I am looking to invest in a new laptop, possibly a desktop in the near future depending on my budget. The question I have about video cards today is that, I enjoy a good MMO game now and then, I don't expect to play heavy intensive games, just maybe some more advance games. I notice that for one game that I want to play, it requires a video card to have (Shadow Rendering, Vertex and Pixle Shaders). Do the computers today have those as standard for thier video card? Or do I have to invest in a little bit more expensive laptop/desktop. I am willing to invest money for some more RAM, if I need to improve its preformance. The reason I ask is because I have a 4 year old Laptop with a broken keyboard, and I was thinking about just replacing the laptop with a newer one. it has some pretty good specs and runs everything fine, but it can not play certain games because of those missing video requirements. (Current laptop incase someone is curious: 1.5Ghz Celeron M, 1GB memory 64MB video (Shared) ) Thanks to anyone who has the answer to this question. (P.S sorry if everything is scrunched together. for some reason the formatting is wierd on Opera web browser

    Graphics cards have all those standard today... or at least they should unless you get a really cheap Graphics card. The kind of graphics card and processor and other specs of the computer you want to get should depend on what you want to do with it. It also depends on the kind of games you want to play. If you're playing FPS [first person shooter] then you need a really good graphics card and processor. If you're playing something like Diablo 2 or something that's on the lower end of graphics then you just need decent specs. Graphics cards, I suggest something with aGeForce Nividia card... as of today, they are in the 9 series for high-end cards I believe. For processors... get something like Intel Core 2 Duo T9500 or T9600 or the Core 2 Quatros or Extremes. Extremes are intended for hardcore gaming and would be more expensive. For RAM you should have at least 2GB... you can always upgrade that later.
    For laptops my suggestions are:
    $3k+ get a customized alienware
    $2-3 get a customized dell xps, or macbook pro [although if you're gaming i would suggest you dual boot with windows xp or vista]
    $1-2k get a cheaper customized dell, or sony vaio
    under $1k... well I don't know what to say... you can't really get a nice gaming computer for under that price.
    I personally DO NOT like HP computers at all because they are so quirky and have so many problems and break down easily.

  • Some random questions about integration features

    Greetings,
    after working for a few weeks with Autovue's ISDK (web server) and having some sucess with its integration with our custom CMS, I have a few random questions about what can be done and what can't be done. So, instead of opening many new threads, I'll post them here together.
    1) Translation. We are localised in Russia, and its translation is incomplete. I have found a tra_en.properties file in AutoVue/bin, and a description about how to create a properties file for custom actions. But no information about how to translate to other languages - and russian translation appears to be packed within the jar of the applet. Is there a clean way to translate, or refine the current translation, so we don't get a mix of russian and english commands in the applet? Because my tries using EXTRABUNDLES have failed, as I don't want to add a bundle for extra actions, but to replace it for existing ones.
    2) Attachments in markups. Markups allow to attach other files, but since our CMS is custom, we only get the option to attach files from our local drives. We did no browse integration with the CMS, as people with different levels of permission will have different access to files there, and we considered unnecessary to provide that level of integration. We are considering to remove this action from the GUI, but before that I'd like to evaluate how hard would it be to generate an upload file action, so the attached file would be stored in the custom CMS and linked to it so the whole thing worked. My guess is "it will be hard and time consuming", so for now, we are considering to delete this feature in our integration.
    3) Is there a way to resize the Open markup dialog? We have several properties displayed, and fit well within a standard screen, but the dialog is small and you have to scroll the table to see all properties.
    Thanks for any assistance with these issues

    As always, thanks for the fast answer, Artash.
    Yes, now I see attachments are stored inside the markup file. The problem is, when I open markup mode for the attachment, since the attachment uses some kind of default access method, my url's from the integration with the background CMS are broken completely. I believe the ideal state here would be to make some kind of inner markup for the attachment, maybe stored within the original markup file along the attached file. Or maybe it works that way, and I need to access it with the default gui action instead of my custom one. If that is the case, is there any way to tell the gui file how to differentiate a standard opened file from an attached one? If so, the issue has solution. If not... Well, then maybe something escapes me.
    Edited by: Jordi Bosch on Apr 6, 2012 12:27 AM

Maybe you are looking for

  • Where is the home button on ipad2 when asked to double click?

    Where is the home button, when asked to double click. I'm trying to lock my screen in landscape mode and to stop it from rotating. Please advise....thank you...

  • Converting logical SQL to physical

    I have a bunch of logical queries stored in my usage tracking table. What's the easiest way that I can convert these to physical SQL? I want to avoid re-running the reports and looking at the NQQuery.log. Let me know if there's an easy way to run my

  • Brand new iPod Nano 4gb. Not responding after being charged for a while.

    Hi guys. I got a replacement for my Nano today. It is brand new. The guy at the Apple Centre said to fully charge it before use, then fully discharge it. I've had the iPod plugged in for a fair while now, and it doesn't seem to be getting charged. Th

  • BPM To SOAP Error

    Hi All, I am getting an error while communicating from BPM to SOAP. The Error is: <SAP:Code area="UNKNOWN">ModuleUnknownException</SAP:Code> AND in the Additional text area the following info is displayed: DeliveryException: XIAdapter:ADAPTER.SOAP_EX

  • Object to date

    I am trying to convert a SQL timestamp (mySQL db) to e dd-mm-yyyy format. The problem I do not know how to convert the object ret to a date. This date is formatted to dd-mm-yyyy in the formatDate method. If someone can help me with the line 'Date out