How to deal with the situation when the database change into ms-sqlserver ?

Hi,dear all,
How to deal with the situation when the database change into ms-sqlserver or other database?
Now, i want to build a j2ee project with ORACLE ADF bc,but this project may be used in several diffrent databases for example oracle db,ms db,mysql and so on.however,if i have developer this project in jdeveloper and this project connection was config as a oracle database,and then,can this project be reused for other databases espasially including the model codes? if yes,how should i do?
all who know how to resolve this,tell me pls,thanks.
bruce Li,
China
Message was edited by:
user526724

Hi Paulbin,
Do you want to supply a function-pointer to a DLL so it can call[back] your VI?  Here's how it can be done with .NET, though, that solution requires a C compiler.   A single "VI_to_function-reference" utility could handle all cases where the callback passes no parameters.  Maybe someday somebody will share that dll.
Did you know that LabVIEW can use Events for some COM-signals change?  See pic.  (Note: DTR is not listed - - )
Another question is another function's prototype is WORD SetTestType(WORD comHandle, bool type1, bool type2, bool type3),   I tried to use a boolean control and a Boolean to (0,1) node in labVIEW to pass parameters to CLF, I config the bool input value as U8(according to C++ bool type) and U32(according to WIN32 BOOL type), it dose not help, when I execute the VI, LabVIEW will be disappeare, it seems to be closed, I must start it again.
Could someone has similar experience on this points?
It's easy to crash LabVIEW misusing CLF - maybe there's another reason for the crash besides bool mis-match(?)  Do you know which "Calling convention" is required?  What type is comHandle? (where does comHandle come from?) 
Cheers!
Message Edited by tbd on 03-23-2007 09:34 PM
Message Edited by tbd on 03-23-2007 09:35 PM
"Inside every large program is a small program struggling to get out." (attributed to Tony Hoare)
Attachments:
evt.jpg ‏7 KB

Similar Messages

  • How to deal with SP Apps when the SP farm is in a different AD domain?

    I have a situation here where we have two AD domains, production and test.  My laptop (that I do most of my work on) is on our production (MYCOMPANY) domain, and my SP2013 farm is in the test (TESTMC) domain. The DNS is set up as mycompany.com and test.mycompany.com.
     I have a personal account in the production domain, a personal account in the test domain, and I have set up a generic SP Admin account in the test domain. (My personal account is also a farm admin and site collection admin.)
    I think I have set up the app infrastructure correctly (app domain in DNS is "spapp.test.mycompany.com", etc.), and apps seem to work, but I was running into the issue of the app config page and app parts prompting for credentials when they load
    on a page. So I followed the advice I found online and added the app domain to my local Intranet sites in IE internet settings.
    Now what's happening is that the app parts and app configuration pages say
    "Sorry, this site hasn't been shared with you."
    I'm logging in to my laptop with my production domain credentials, but when I go to the SP site I'm logging in with my test domain credentials. If I take the app domain out of my Intranet sites, and force the second credential check, and use the test domain
    credentials, everything seems to work. So I'm guessing that what's happening is that with the app domain included in the Intranet sites, my production domain credentials are getting passed on to the app.
    Am I right in my assumption? What's a good way to deal with this? I've had previous experiences that led me to believe SP would use the credentials you logged in to the site with (in this case, my test domain account), which are associated with the browser
    session, and not default to the credentials you are logged in to the machine with.
    In addition, it seems like anything opening from the app domain gets stripped of all the SharePoint bits. Here's a screen shot of an app configuration page in a working environment:
    And here's a screen shot of the same app configuration page in my environment:
    Does anyone have any idea what's going on here?  Where should I be looking to fix this?
    Dylan Cristy | MCTS SharePoint 2010 Application Development
    Blog: morefunthanapokeintheeye.blogspot.com

    Note that it is not recommended to place the SharePoint Apps DNS zone in the Intranet Zone of IE, as SharePoint Apps (from 3rd parties, at least) should be potentially dangerous as they may contain XSS vulnerabilities.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • How to deal with "Error 1001. The specified service already exists" when install a service using installer package?

    Hi everybody,
    I wrote a "Class Library" project which is a service using Visual Stodio 2008 recently, then tried to use a Visual Studio 2008
    Setup Project to install it.
    Here is what I did for the "Class Library":
    1. Finish the program.cs, Service.cs
    2. Add Installer
    3. Change the serviceInstaller so that "StartType" to be Aotumatic
    4. Change the ServiceProcessInstaller2 so that "Account" to be LocalSystem
    5.
    6. Click in F5 (Start Debugging)
    Here is what I did for the Setup Project:
    1. Add the exe file built from the "Class Library" project to the Application Folder
    2. On the Custom Action Editor, add the exe file from 1 to Install and Commit
    3. Change the property of the project so that "RemovePreviousVersion" to be true
    4. Click on F6(Build Solution)
    Then I tried to run the msi file from the built of the Setup Project. Because I modified the two projects serveral times, I uninstalled the Class Library using "Control Panel->Add or Remove Programs" before I reinstall. Two things I notived:
    1. After unstall, the registry was not cleaned up about the installed program
    2. After several rounds install/uninstall, I got "Error 1001. The specified service already exists"
    My questions are:
    1. How to cleanup the registry when uninstall a program?
    2. How to deal with the "Error 1001. The specified service already exists"?
    3. Did I do anytbing wrong with the "Class Library" or the "Setup Project"?
    Thanks a lot!
    Helen

    Hi Simon, not a problem!
    I spent some more time on this and here are few more notes:
    it is called Major Upgrade, when you are installing new version of the product upon a previous one and
    MSI supports 2 strategies:
    Strategy 1. Install a new version and uninstall previous one. (Install a new version right upon previously installed version (file merging is performed based on dll version number) and the delete previously
    installed files)
    Strategy 2. Uninstall previous version and install a new one (Delete all previous files and install from scratch new files.)
    From the first look it seems that 1st strategy is weird and buggy. But, remember, MSI is great because it's transactional!!! That means that if once some of the phases (Installation, Uninstallation, Rollback, Comit) fails, your machine
    will be reverted to the previous state and it'll be still functional. 
    Let's consider both strategies:
    Consider you have installed product_v1.msi and you want to install product_v2.msi.
    Strategy 1
    1. MSI engine copies files from Product_v1 directory to TEMP directory
    2. MSI engine merges files based on the assembly version (between v1 and v2)
    3. Once merging is completed successfully it removes files in TEMP (RemoveExistingProducts  action triggers it) and you got product_v2 installed, otherwise if it fails MSI engine revert machine to V1 and copies previous files from TEMP.
    Strategy 2
    1. MSI engine tottaly removes all files from v1.
    2. MSI engine installs v2 files and if something goes wrong you cannot revert back, because RemoveExistingProducts  allready worked out and MSI doesn't have files to revert machine back
    I recommend to everybody to use Strategy 1 and leverage MSI transaction functionality. And you can set this strategies by defining sequence of RemoveExistingProducts action. See more info
    here.  So, I think it's not even a bug in VS as I said in the upper post it is default recommened behaviour.
    AND, you got "Error 1001. The specified service already exists"
    because if we follow Strategy 1 MSI engine tries to install Windows Service on top of the existing service and OF COURSE it fails MSI engine (StopServices, DeleteServices actions are executed before actual
    installation and  they look at ServiceControl table). In order to stop service first and delete them you have to fill ServiceContol table of the MSI (and then StopServices, DeleteServices actions will recognize what to they have to stop
    and delete), like this:
    *clip*clip*clip*
    ' see http://msdn.microsoft.com/en-us/library/windows/desktop/aa371634(v=vs.85).aspx for more info
    ' Update the Service Entry to stop and delete service while uninstalling
    query = "INSERT INTO ServiceControl (ServiceControl, Name, Event, Arguments, Wait, Component_) VALUES ('MAD_Service', 'Service name', '160', '', '1', '"
    + componentName + "')"
    Set view = database.OpenView(query)
    : CheckError
    view.Execute : CheckError
    ' Update the Service Entry to stop and delete service while installing
    query = "INSERT INTO ServiceControl (ServiceControl, Name, Event, Arguments, Wait, Component_) VALUES ('MAD2_Service', 'Service name', '10', '', '1', '"
    + componentName + "')"
    Set view = database.OpenView(query)
    : CheckError
    view.Execute : CheckError
    *clip*clip*clip*
    We can uninstall service first by following Strategy 2, but then we lose transactional support.
    So, Simon did I encourage you to change your code a bit?:)
    And, btw, if you don't want to change the strategy, please don't rely on SequenceID in MSI table, it can be change, you have to get the at the runtime.
    Hope it will help to everybody!
    See also more advanced explanation of how MSI works
    here.
    Truly yours, Marat

  • How to deal with user session when power goes off

    Hi
    All,
    One day I had 170 oracle session connected on oracle database server and and suddenly electricity went off. but server was still running. and after power back on ther same bunch of user try to connect it.So I don't know what happen to those 170 session. does anybody know how to deal with this? I did shutdown and restart of database but I am not sure that is correct way to deal with this kind of situation.
    Thanks,
    Vishal

    If the database server is still running, the sessions will remain there, but it depends on how they got connected to the server. If they got access through a middle tier which maintains the session and this MT is still running the sessions will still be visible from the database perspective, unless the MT handles the disconnection event.
    If the sessions are working on a Client-Server basis, then PMON will mark the sessions as abruptly broken and it will get rid of them. Sessions may eventually remain hanged, but it depends on the topology, so the way you proceed was a clean database restart.
    ~ Madrid
    http://hrivera99.blogspot.com

  • How to deal with 4GB limit of the mail box

    Thunderbird says there is not enough space, even after archiving too. please guide to increase the limit from 4 GB to higher

    Is that message regarding Thunderbird folders or the server?
    Background info:
    Pop mail account folders and synchronised subscribed imap folders download emails and store them in mbox files.
    You will see Folders in your Folder Pane, but in reality the emails are stored one after the other, in the order they were downloaded in a file. So they are not stored as separate emails.
    If you have them stored in eg: Inbox, these emails are actually stored in one file; a single document.
    So it is a good idea to organise them into separate folder in the Folder Pane to make the files smaller, This means therre is less risk and it uses less memory to open the files. Archiving by year and month and keeping folder structure will organise the emails into small files.
    See Archiving options:
    https://support.mozilla.org/en-US/kb/archived-messages
    Emails that are deleted are 'marked as deleted' and from your point of view they are moved to the 'Deleted' folder. In reality they are still in the Inbox (or what ever folder) just hidden, marked as deleted and still taking up space.
    It is possible that you have old deleted mail taking up space.
    So to remove all of those 'marked as deleted' emails you would need to right click on folder and select 'compact' or you can compact all folders using 'File > Compact folders.
    Please note that if the folder has any corruption, you may lose emails.
    As a precaution especially on the Inbox as this folder sees the most downloading, moving and deleting; I would move all good emails into suitable folders; delete what you do not want and then when the Inbox is empty compact the folder. As general useage, the Inbox should ideally be kept low in email numbers and not used as a general storage.
    The Sent folder can also get a lot of emails, so make sure you Archive that folder as well.
    Junk and Deleted folders need to be emptied and compacted too.
    '''If you got that message from the server'''
    Check how many emails are kept on the server.
    '''If you have Pop mail accounts''' then the server would expect you to download and delete frequently off the server.
    You can configure this in your Account Settings.
    right click on mail account name in Folder Pane and select 'Settings', then choose 'Server Settings for the mail account
    or
    Tools > Account Settings > Server Settings for the mail account
    or
    Menu icon > options > Account Settings > Server Settings for the mail account
    You can select to 'Leave messages on server'
    You can also select 'for at most eg: 32 days'
    which will only keep the more recent email
    You can also select 'Until I delete them'
    This will delete anything you have deleted if less than eg: 32 days.
    Click on Ok to save changes.
    '''If you have an IMAP mail account''' and you have reached you quota limits, I would suggest you synchronise folders and then in offline mode move some emails into suitably named folders in Local Folders. These emails will be kept on your computer and not the server.
    Remember any emails only stored on your computer will need to be backed up.
    Backup info:
    * http://kb.mozillazine.org/Profile_backup
    * http://kb.mozillazine.org/IMAP_backup

  • How to deal with two tables in the Data Base

    Hi Experts,
    IF WE WANT TO GET THE DATA FROM THE TWO TABLES, WHAT QUERY SQL STATEMNET SHOULD HAVE TO WRITE AND ANY CONFIGURATION CHANGES NEED TO BE DONE AND WHAT SETTINGS NEED TO BE DONE IN THE ESR .
    PLEASE EXPLAIN ME ON THIS .
    THANKS IN ADVANCE.
    RAM

    If you are using the same database and referencing two tables then you dont need special configuration for it. You use single jdbc adapter. In ESR you create two statment structure one for each table. This is one option. The second option is use join statment and write query and in this case one statment data structure.
    Please go through the help sap link for the jdbc document structure.
    http://help.sap.com/SAPHELP_NW04s/helpdata/EN/2e/96fd3f2d14e869e10000000a155106/content.htm
    The second option can be done using the below structure.
    <StatementName>
    <anyName action=u201D SQL_QUERYu201D >
    <access>SQL-String with optional placeholder(s)</access>
    <key>
      <placeholder1>value1</placeholder1>
      <placeholder2>value2<placeholder2>
    </key>
    </anyName > 
    </StatementName>

  • How to deal with delta queue when importing Support Package/Kernel Patch

    Hi,
    From my experience, when importing a Support Package for an installation, the system will issue an error message and get stuck if this Support Package is about to alter the structures used in delta loads.
    But I would like to double with you if there is possible that the support packet which is going to alter structure, but no error message. If so, the delta data will be lost.
    Do we need to clear down the delta queue every time we import support package?
    Anyway, is there anyone have any suggestions or steps regarding this question?
    Many Thanks
    Jonathan

    Hi,
    Delta queues during support package upgrade
    Its always better to drain the delta queues before an upgrade.
    As a standard practice we drain the delta queues by running the IP/ chain multiple times.
    As a prerequiste we cancel/reschedule the V3 jobs to a future date during this activity.
    The V3 extraction delta queues must be emptied prior to the upgrade to avoid any possible data loss.
    V3 collector jobs should be suspended for the duration of the upgrade.
    They can be rescheduled after re-activation of the source systems upon completion of the upgrade.
    See SAP Notes 506694 and 658992 for more details.
    Page 17
    Load and Empty all Data mart Delta Queues in SAP BW. (e.g. for all export DataSources)
    The SAP BW Service SAPI, which is used for internal and ‘BW to BW’ data mart extraction, is
    upgraded during the SAP BW upgrade. Therefore, the delta queues must be emptied prior to the
    upgrade to avoid any possibility of data loss.
    upgrade preparation and postupgrade checklist
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/472443f2-0c01-0010-20ab-fbd380d45881
    /message/3221895#3221895
    OSS notes 328181 and 762951 as a prerequisites.
    Failure to follow the instructions in those notes may probably result in data loss.
    https://websmp207.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700002662832005E
    /thread/804820
    Effect on BW of R/3 Upgrade   
    How To Tackle Upgrades to SAP ERP 6.0
    /people/community.user/blog/2008/03/20/how-to-tackle-upgrades-to-sap-erp-60
    Start with the Why — Not the How — When You Upgrade to SAP ERP 6.0
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/008dddd1-8775-2a10-ce97-f90b2ded0280
    Rapid SAP NetWeaver 7.0 BI Technical Upgrade
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0c9c8be-346f-2a10-2081-cd99177c1fb9
     https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c2b3a272-0b01-0010-b484-8fc7c068975e
    Hope this helps.
    Thanks,
    JituK

  • How to deal with Select Menu when it can NULL or a Value with SQL

    I have a SELECT Menu(:P_55X) with:
    "NULL DISPLAY VALUE" = NULL
    "NULL RETURN VALUE" = NULL
    The Chart query is as follows.
    SELECT NULL LINK,
    START_DATE "FOR_MONTH",
    ROUND(AVG("SLA"),3) "SLA_UPTIME"
    from SLA_TIMES_ZABBIX
    LEFT JOIN (SELECT DISTINCT NODE_NAME,OS_TYPE from CMS.CMS_NODE_OS where remove_dt is NULL) OSNODE on LOWER(SLA_TIMES_ZABBIX.NODE_NAME)=LOWER(OSNODE.NODE_NAME)
    where OS_TYPE=:P55_X group by START_DATE order by START_DATE ASC;
    How can I accout for the (:P55_X) variable being NULL sometimes and not null other times. meaning I can't use the "=" when the values is null because I need a IS NULL there.
    The column in the database either has a value or is NULL.
    Thanks
    Robert

    where (OS_TYPE = :P55_X OR (:P55_X IS NULL and OS_TYPE IS NULL))

  • How to deal with digital signatures when converting messages?

    Hi there,
    this it not (yet) about the actual implementation. It's more of a logical problem that I'm facing.
    There are two partners A and B. A is sending an EDIFACT document which is digitally signed to B.
    B has a XI instance that is converting all incoming messages into IDocs, in this particular case INVOIC. This IDoc is received by the R/3 system.
    All invoices must be archived due to an eventual tax inspection.
    In order to fulfill the security requirements all archived data must be digitally signed.
    So far so good.
    I guess I'm not allowed to sign my invoices with my own private key due to the fact that i could alter the containing data and sign it again.
    It's obvious that I cant apply the digital signature from the EDIFACT message to my IDoc because the data has changed and therefore the signature is invalid.
    The only solution to this problem, that I can imagine, is to archive EDIFACT alongside IDoc.
    Have you experienced a similar problem or do you have any other idea in order to solve this issue?
    I hope my problem is well defined.
    Any comment is appreciated.
    Thanks in advance
    Bastian Stratmann

    Hi Bastian,
    it is not possible to separate the signature from the document signed.
    The system A generates and EDIFACT message -> A has the responsibility on this message and so A sign it.
    XI manipulate the message received from A, that means XI generates a new message. -> XI has the responsibility on it, so if you want a signature this should be generated by XI.
    As the IDoc was generated by XI it cannot be signed by A (neither technically nor logically) because A has no responsibility on it.
    XI <b>is</b> altering the message so XI is responsible for it.
    In this case you have to store both the EDIFACT message and the IDOC and maybe sign this new document (EDIFACT+IDOC) with XI signature .
    Kind Regards,
    Sergio

  • How to deal with dwindling space on the server.

    Hi everyone,I have to imagine this topic has been discussed at length here, but my Google Fu seems to be rather weak, as I haven't found anything that really addresses this question for me. I'm on month #3 in my first non-hotel IT job and I'm looking to help the company out by implementing a systems management solution that takes care of a number of challenges we're encountering.
    In a nutshell, we are a SaaS shop with Windows, Linux, and Mac systems. Servers are mostly Windows-based, all virtualized (VMware 5.5), with two data centers and four branch offices around the country. We currently use Kaseya for remote desktop (and want to get rid of it), WSUS for Windows patches, Puppet (from what I've heard) for Linux patches, and don't have anything for Mac. We have some sort of hardware device for vulnerability scanning, and don't have a...

    Alban CAT, a family owned and operated caterpillar dealer, streamlines diagnostics and repair operations with Panasonic Toughbook computers. Read the full case studyhere.Challenge: Alban CAT required a new mobile computing solution to address hardware device failure and unreliable wireless connectivity in the field.Solution: Alban CAT deployed the fully-rugged Toughbook 31 and semi-rugged Toughbook 53 laptops – featuring rugged durability, embedded mobile broadband and unique enterprise – grade functionality – to its field workforce throughout the region.Result: After deploying the Panasonic Toughbook solution, Alban CAT technicians streamlined diagnostics and repair operations, improved customer service times, enhanced employee and customer satisfaction, and greatly reduced device failure.To learn more, take a look at the case study...

  • How to deal with skype support when they don't del...

    Hello
    Its been about 2 months now since I lost all of my contacts on skype, around 120. I contacted skype and was told by the person that he had restored my contacts and I was just to wait 72 hours. I waited the time and checked, still nothing, I waited a week, still no contacts, so I contacted skype support a second time and I soon transferred to someone who was supposed to know more about those kinds of problems, but she told me she escalated the problem and a couple of days later I got a mail saying that skype was working on the problem. But that is 3 weeks ago. I use skype every day so you can imagine the problem this causes, since I don't keep 120 skype id's in my head at all times. Should I contact skype support again regarding this issue or should I accept the fact that they messed up bad and abandon skype all together?
    JESUS, i even had to create a whole new account even after logging in to post this, thanks skype.

    Hi,
    This link will take you to the instructions to contact Skype Customer Service: contact customer service
    Copied and pasted from the page referenced:
    Skype offers help and support through ...:
    Email - follow the steps below to submit your support request to us by email
    Live chat for eligible customers
    We don’t currently offer telephone support.
    If you are a Skype customer, you can contact Skype Customer Service as follows:
    Sign in with your Skype Name and password.
    Select the topic you need help with and the problem you are having. Some information is displayed that might help with your problem is displayed.
    If the information doesn’t help, click Continue support request.
    Select your contact method.
    If you chose email, enter your details, describe your problem, and then click Send support request. We'll get back to you as soon as we can.
    and ...
    Live chat allows you to use instant messaging to contact our Customer Services team via our website.
    To be eligible for live chat, you have to belong to one of these groups:
    Skype Premium customers
    Skype Manager™ administrators
    Other groups of eligible paying customers
    This service can be accessed via our website 24 hours a day, and is currently only available in English.
    If you are a Skype customer, you can contact live chat support as follows:
     Sign in with your Skype Name and password.
    Select the topic you need help with and the problem you’re having. Some information that might help with your problem is displayed.
    If the information doesn’t help, click Continue support request.
    Select your contact method.
    If you are eligible for live chat support, you will see an option to request chat support. Click the Start a chat button.
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • How system deals with co commitments

    Situation is:
    PO:
    1 line purchase order, account assignment category A (asset) with 5 AU (order unit) and with 5 WBS elements each on 1 AU.
    1 AU=37.480,00u20AC
    Invoice:
    Partial invoices comming to first PO line and first WBS element (first partial invoice, not full amount)
    1. invoice 19.900,00u20AC to first WBS element  0,63 AU
    2. invoice  5.000,00u20AC to first WBS element   0,15 AU
    3. invoice 12.580,00u20AC to first WBS element  0,52 AU
    summary 37.480,00u20AC to first WBS element   1,3 AU
    And the question is how system deals with co commintments when the accountant assign bad quantity to first line of PO and the first WBS element. Accountant exceeded quantity in invoice:
    invoice = 1,3 AU and in purchase order is 1 AU
    in this situation how co commitments are calculated ???
    thanks for help
    M.

    1. The system property java.library.path and likewise, the classpath one, are really only there (as far as I know) to show what was in the environment when the JVM started. Updating the properties doesn't actually change the environment. Just like you can probably change "os.name" from Windows to Linux, but that doesn't mean the system changes to run Linux.
    2. mapLibraryName just translates the library file name to the system dependent library name, and has nothing to do with the actual environment.

  • How to deal with poorly designed code

    Hello, everyone.
    I have a problem with some program that I wrote starting my career as a programmer.
    At first I studied a lot and wrote this program in java with poor design solutions in mind.
    My code looked like procedural(I studied c before) object oriented freak.
    And as a result even I could hardly modify my code. I had to spend hours
    remembering what each function in class did.
    And some time after that my boss asked me to write one new feature which actually changes
    architecture a lot. Even if it was good object oriented code, it would take some time. But now
    it takes a great amount of struggle and patience to rewrite my ugly code and implement this
    new feature.
    So I'm asking you developers out there: How do you deal with such situations when for example
    someone wrote very bad piece of code and you have to change/modify it to support new requirements?

    Dusty wrote:
    Xyne wrote:Refactoring isn't fun
    I'm filing this under 'complete and utter bullshit' I read on the first of the fourth month. :-P
    I love refactoring, taking something good and making it great. The eternal search for perfection just outside your grasp.
    Dusty
    Yarrrr, because what's more fun than pouring effort into something to end up with the exact same functionality that you started with?
    Finding new and better ways to do things is fun and you definitely improve your coding skills when you go back and pick apart the hack-n-slash stuff you've written before, but overall I don't think it's fun (unless you're truly doing it only for yourself, i.e. no obligations, no deadlines, etc).

  • How to deal with--errors occurred, no packages were upgraded

    This has only occurred to me once before, I think.
    I was running a pacman -Syu today and it was trying to upgrade kernel2612-cko2-swsusp2 with the new kernel26cko package. The old cko was installed by grabbing the pkgbuild, making and then installing. Pacman automatically picked up that there was a new version to supercede it.
    Yet, I get a ton of "exists in filesystem" errors, which ends with "errors occurred, no packages were upgraded."
    Now, I've been searching about the best way to deal with such situations. The common approach from previous posts is to force it, with the -f argument. Typically, there is a clause though, that you should only force when the files are owned by a package that pacman knows of. That is, if pacman -Qo [file] doesn't return anything, you are safe to force.
    But, in this instance, the offending files are owned, and pacman knows about it. So, what's the way forward? Removing the old package manually? Manually re/moving the conflicting files?
    Cheers

    i think there may be a problem in the sane package from testing. i installed smaller chunks of kde (kde-common, kdebase, kdeadmin, etc.) and they all went fine, but when i tried to install kdegraphics, it gave me the error
    [root@arch jerry]# pacman -S kdegraphics
    Targets: libungif-4.1.3-2 imlib-1.9.15-2 libgphoto2-2.1.6-2 libieee1284-0.2.10-2
    sane-1.0.16-2 fribidi-0.10.5-2 gimp-print-4.2.7-3 ghostscript-7.07.1-5
    t1lib-5.1.0-1 kdegraphics-3.4.2-3
    Total Package Size: 23.6 MB
    Proceed with upgrade? [Y/n]
    checking package integrity... done.
    loading package data... done.
    checking for file conflicts...
    error: the following file conflicts were found:
    sane: /usr/var: exists in filesystem
    errors occurred, no packages were upgraded.
    should this be filed as a bug report? i did a fresh install and did not have kde installed to begin with, but im pretty sure this happened also when trying to upgrade

  • How to deal with Tax Rate Changes

    Dear All,
    Suppose we have one tax code XY with tax rate 10.30 %.
    And after budget it gets changed to suppose 12.36% from 10.30%, so in that case how to deal with this situation.
    Do we need to create new tax code or we should do the changes in existing tax code.
    Also if we have open PO's with old tax code, what will we the effect in those PO's for both the cases (with new tax code or changes in existing tx code).
    Thanks
    Vijay

    Dear All,
    Suppose we have one tax code XY with tax rate 10.30 %.
    And after budget it gets changed to suppose 12.36% from 10.30%, so in that case how to deal with this situation.
    Do we need to create new tax code or we should do the changes in existing tax code.
    Also if we have open PO's with old tax code, what will we the effect in those PO's for both the cases (with new tax code or changes in existing tx code).
    Thanks
    Vijay
    If you change the existing tax code, all the open POs with the old tax rate will be changed to the new rate. So. if any of your vendor gives an invoice with reference to an open PO with old tax rate (Invoice raised before tax rate change and received at your place after tax rate change) you will not be able to make the GR due to tax rate difference. So, before changing the tax rate, make sure that there is no old invoice pending to do GR or IR and also there is no material in transit.
    If you are creating a new tax code, you can create new POs and receive the material based on that POs. If any material received against the old POs you can post with old tax rates. But, discuss with your FI person of there is any issues regarding statutory requirements with Excise / Tax authorities.

Maybe you are looking for

  • Calendar Weather Icon & Temp

    Would Apple consider adding a small weather icon and temp to the current and following 5 days in their iCal and iOS calendar? The data could be pulled from the same place the weather app does, it would give folks better, quicker planning at a glance.

  • Itunes doesnt work on my xp sp3

    loads, starts to show itunes screen, stops with just the words 'itunes store' in white square in middle of window.

  • Transaction not rolling back in stateless session bean

              Hi,           I am facing a problem...           I have one stateless session bean which does multiple updates in SYBASE database.I           am using non-transactional datasource. Bean calls a method of data access obejct           whcih i

  • Sorting issue in Advance table region

    Hi All, Facing issue in sorting. I have an advance table region , I have set the property Sort Allowed : Yes ; Sort By View Attribute : View attribute Name This is working for all the columns but it is failing for date columns. Data is not getting so

  • Pressure Sensitivity not available in CS4

    I have a Calcomp DrawingBoard lll with pressure sensitive stylus which works fine in other applications like Painter 11 but loses its pressure capabilities in CS4 (both AI and PS). The stylus behaves like a mouse but in shape dynamics the pen pressur