Error in Scratch Editor(forgot "on" in joins)

I use SQL Developer 1.5.0.52
I want migrate from T-SQL(MSSQL 2005) to PL/SQL(Oracle 10g) in the Scratch Editor. In "update <table>" commands forgot the Scratch Editor the on-Keyword in joins.
T-SQL:
update #cursorTable
set isRed = 1
from #cursorTable cT
inner join myBaum baum on cT.projekt_id = baum.projekt_id
inner join myBaum_dispoUser du on baum.myBaum_id = du.baum_id
inner join dbo.flowIBview_projektsheet ps on cT.projekt_id = ps.projekt_id
and cT.mask_id = ps.mask_id
where ( (ps.filterNodesForMask = 1 AND cT.mask_id = du.mask_id)
OR
(ps.filterNodesForMask = 0) )
and cT.mask_timestamp < baum.timestamp_conv
PL/SQL(with forgotten on):UPDATE tt_cursorTable
SET ( isRed ) = ( SELECT 1
FROM tt_cursorTable cT
JOIN myBaum baumcT.projekt_id = baum.projekt_id
JOIN myBaum_dispoUser dubaum.myBaum_id = du.baum_id
JOIN flowIBview_projektsheet pscT.projekt_id = ps.projekt_id
AND cT.mask_id = ps.mask_id
WHERE ( ( ps.filterNodesForMask = 1
AND cT.mask_id = du.mask_id )
OR ( ps.filterNodesForMask = 0 ) )
AND cT.mask_timestamp < baum.timestamp_conv )
WHERE ROWID IN (SELECT tt_cursorTable.ROWID
FROM tt_cursorTable cT
JOIN myBaum baumcT.projekt_id = baum.projekt_id
JOIN myBaum_dispoUser dubaum.myBaum_id = du.baum_id
JOIN flowIBview_projektsheet pscT.projekt_id = ps.projekt_id
AND cT.mask_id = ps.mask_id
WHERE ( ( ps.filterNodesForMask = 1
AND cT.mask_id = du.mask_id )
OR ( ps.filterNodesForMask = 0 ) )
AND cT.mask_timestamp < baum.timestamp_conv) ;

Hi <please supply name>,
Thanks for the feedback.
I have replicated this issue and logged a bug
6976327: UPDATE JOIN CLAUSE NOT TRANSLATED CORRECTLY
Theres no space between the join table alias and the next word either.
Ill keep you uptodate.
Thanks
Dermot.

Similar Messages

  • Error with Scratch Editor

    I'm using SQL Developer 1.1.2.25 and every time I try to open a file in the Scratch Editor and click on the Translate button I get an error saying "Cannot Translate".
    If I run sqldeveloper\bin\sqldeveloper.bat I can see a stack trace being printed (See exception at the end of the post)
    In the extensions list I can not see any component with the package name in the stack trace, but I guess these might be related:
    Oracle Migration Workbench     oracle.dbtools.migration     10.2.0.0612     Loaded
    Oracle Migration Workbench - MS Access     oracle.dbtools.migration.msaccess     10.2.0.0612     Loaded
    Oracle Migration Workbench - Translation Core     oracle.sqldeveloper.migration.translation.core     10.2.0.158     Loaded
    Oracle Migration Workbench - Translation UI     oracle.sqldeveloper.migration.translation.gui     10.2.0.158     Loaded
    Oracle Migration Workbench - Translation MS Access     oracle.sqldeveloper.migration.translation.msaccess     10.2.0.158     Loaded
    Is there any way to workaround this and get the Scratch Editor working?
    Thanks!
    java.lang.NullPointerException
    at oracle.dbtools.migration.gui.scratch.ScratchMainPanel.migrateAction(ScratchMainPanel.java:447)
    at oracle.dbtools.migration.gui.scratch.ScratchMainPanel.access$200(ScratchMainPanel.java:56)
    at oracle.dbtools.migration.gui.scratch.ScratchMainPanel$4.mouseClicked(ScratchMainPanel.java:422)
    at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:212)
    at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:211)
    at java.awt.Component.processMouseEvent(Component.java:5491)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
    at java.awt.Component.processEvent(Component.java:5253)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3955)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3901)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1774)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

    Just so Im clear,
    Your trying to use the Translation Scratch Editor to translate the contents of a file.
    You have selected the MS Access translator and opened a file.
    When you click translate, "Cannot Translate" is displayed.
    The Access Translator can only translate MS Access SQL queries. It will try and translate them to Oracle Views.
    If you are trying to translate VB or a SQL Script, the translator will fail.
    Can you provide the statement you are translating.
    Thanks
    Dermot.

  • Query Translation with the Scratch Editor

    Hallo,
    it seems the scratch editor has some issues with some MS Access queries.
    Convertion from Table Creation Queries work well.
    Trying to translate Update Queries or Insert Queries often fail.
    For example look at this one:
    UPDATE tbleC_Check_Reporting
    INNER JOIN KORDOBA
    ON tbleC_Check_Reporting.[A Kontonummer KORDOBA] = KORDOBA.BS_KTO_NR
    SET tbleC_Check_Reporting.Umsatz = KORDOBA.BSE_DATUM_JJJJMMTT;
    Translating it i get the error:
    Unknown Object: unexpected AST node:
    EXEC_PARAM_LIST: Line -1 Column -1
    What can be the problem ?
    Thanks,
    Jochen

    Hi Jochen,
    Thanks for the feedback.
    I have logged a bug
    6281243: ACCESS UPDATE / INSERT JOINS NOT RECOGNISED
    to track this issue.
    Regards,
    Dermot.
    Message was edited by:
    dooneill

  • UPDATE ... FROM, wrong translation in Scratch Editor

    I use SQL Developer 1.5.0.52
    I want migrate from T-SQL(MSSQL 2005) to PL/SQL(Oracle 10g) in the Scratch Editor. I often use the UPDATE ... FROM command in T-SQL, the tranlation in the Scratch Editor is wrong with more than one join. I need a quick solution for my problem!
    Little example:
    Tables:
    drop table A;
    create table A(
    a1 int,
    a2 int
    drop table B;
    create table B(
    b1 int,
    b2 int
    drop table C;
    create table C(
    c1 int,
    c2 int
    insert into A values( 1, 1);
    insert into A values( 2, 2);
    insert into A values( 3, 3);
    insert into B values( 1, 1);
    insert into B values( 2, 2);
    insert into B values( 3, 3);
    insert into C values( 1, 11);
    insert into C values( 2, 22);
    insert into C values( 3, 33);
    T-SQL with 2 tables
    update A
    set A.a2 = c.c2
    from A inner join C on A.a1 = c.c1
    PL/SQL with 2 tables
    The Scratch Editor translates it correct and I can work with this translation.
    MERGE INTO A
    USING (SELECT * FROM C) C
    ON ( A.a1 = c.c1 )
    WHEN MATCHED THEN UPDATE SET a2 = c.c2;
    T-SQL with 3 tables
    Now we take a table more between A and C (it's simple in T-SQL):
    update A
    set A.a2 = c.c2
    from A
    inner join B on A.a1 = B.b1
    inner join C on B.b2 = c.c1
    PL/SQL with 3 tables, wrong translation
    The Scratch Editor translates it in a difficult form and it's only correct, when the where clause get only one ROW.
    ==> The solution is wrong for all other cases( more then one ROW)
    UPDATE A
    SET ( a2 ) = ( SELECT c.c2
    FROM A
    JOIN B on A.a1 = B.b1
    JOIN C on B.b2 = c.c1 )
    WHERE ROWID IN (SELECT A.ROWID
    FROM A
    JOIN B on A.a1 = B.b1
    JOIN C on B.b2 = c.c1);
    PL/SQL with 3 tables, correct translation(my desire)
    My own translation:
    MERGE INTO A
    USING ( select B.b1, B.b2, C.c1, C.c2
    from B
    inner join C on B.b2 = C.c1) e
    on (A.a1 = e.b1)
    WHEN MATCHED THEN UPDATE
    set A.a2 = e.c2;
    I want the correct translation with the Scratch Editor or I must write an own tool for this case. It is possible to config the Scratch Editor for specific cases?

    Hi Carlos,
    Thanks for this feedback. The nice testcase really helps.
    I have replicated your issue and added the details to the bug
    6976327: OTNFORUMS : UPDATE JOIN CLAUSE NOT TRANSLATED CORRECTLY
    As they are in a similar area to the other issue you reported.
    You solution is fine, but I would like to suggest a small change as to how the Translator should behave.
    T-SQL
    update A
    set A.a2 = c.c2
    from A
    inner join B on A.a1 = B.b1
    inner join C on B.b2 = c.c1
    Your Solution
    MERGE INTO A
    USING ( select B.b1, B.b2, C.c1, C.c2
    from B
    inner join C on B.b2 = C.c1) e
    on (A.a1 = e.b1)
    WHEN MATCHED THEN UPDATE
    set A.a2 = e.c2;
    Suggested Solution
    MERGE INTO A
    USING ( SELECT a.rowid a_rowid, c.c2
    from A
    inner join B on A.a1 = B.b1
    inner join C on B.b2 = c.c1) x
    on (A.rowid = x.a_rowid)
    WHEN MATCHED THEN UPDATE
    set A.a2 = x.c2;
    I think the suggested solution is a little more easier to translate and maintain.
    I keep the entire set/from/on clauses together and just added the rowid. . Then I only have to reference the rowid in the ON clause to specify which rows to change. In your solution the on clauses are broken up between the subquery and the on condition.
    Any comments appreciated.
    Thanks
    Dermot.

  • The error message "Scratch disk is full" when trying to create

    the error message "Scratch disk is full" when trying to create a image/logo in Photoshop CS6

    Hi Weed42,
    This has been discussed in the following forum links:
    http://forums.adobe.com/thread/1164997
    http://forums.adobe.com/message/4968658
    Let us know if this helps,
    Regards
    Gurleen

  • Unexpected error compiling the runtime metadata for Split-Join.

    Hi Everyone,
    We are getting below error while restarting the managed servers on Weblogic. We are having 6 managed servers in our cluster. In one of the application in OSB10.3, we are using SplitJoin to call third party webservices. The application is getting deployed properly, and sometimes on one of the managed nodes, we are seeing below error during startup. The servers are coming into Running mode as per the console, but in logs we are seeing the error. No services are accessible on that particular managed node. We have to restart the server and by luck, it will come up properly. This is inconsistent behaviour from the managed servers. Below is the stack trace from stdout files. Any help would be greatly appreciated...
    <Jan 24, 2012 5:49:34 PM CST> <Error> <OSB FLOW Kernel> <BEA-2031003> <Split-Join deployment error during load notification: Unexpected error compiling the runtime metadata for Split-Join: "FISRecXferInqServiceV2_0/SplitJoin/RecXferInqSJ".
    com.bea.bpel.compiler.CompilerException: Unexpected error compiling the runtime metadata for Split-Join: "FISRecXferInqServiceV2_0/SplitJoin/RecXferInqSJ".
    com.bea.bpel.compiler.CompilerException: Unexpected error compiling the runtime metadata for Split-Join: "FISRecXferInqServiceV2_0/SplitJoin/RecXferInqSJ".
         at com.bea.alsb.flow.compiler.ProcessMetaDataFactory.create(ProcessMetaDataFactory.java:99)
         at com.bea.alsb.flow.resources.ResourceDeployer.deploy(ResourceDeployer.java:104)
         at com.bea.alsb.flow.resources.ResourceDeployer.access$100(ResourceDeployer.java:64)
         at com.bea.alsb.flow.resources.ResourceDeployer$LoadListener.onLoad(ResourceDeployer.java:545)
         at com.bea.wli.config.impl.ResourceListenerNotifier.sendLoadNotificationsInContext(ResourceListenerNotifier.java:239)
         Truncated. see log file for complete stacktrace
    >
    <Jan 24, 2012 5:49:34 PM CST> <Error> <ConfigFwk> <BEA-000000> <Failed in onLoad. Will not deliver the remainder of onLoad notifications to this listener.
    java.lang.RuntimeException: Unexpected error compiling the runtime metadata for Split-Join: "FISRecXferInqServiceV2_0/SplitJoin/RecXferInqSJ".
         at com.bea.alsb.flow.resources.ResourceDeployer$LoadListener.onLoad(ResourceDeployer.java:551)
         at com.bea.wli.config.impl.ResourceListenerNotifier.sendLoadNotificationsInContext(ResourceListenerNotifier.java:239)
         at com.bea.wli.config.impl.ResourceListenerNotifier.access$400(ResourceListenerNotifier.java:41)
         at com.bea.wli.config.impl.ResourceListenerNotifier$1.execute(ResourceListenerNotifier.java:152)
         at com.bea.wli.config.transaction.TransactionalTask._doExecute(TransactionalTask.java:217)
         Truncated. see log file for complete stacktrace
    com.bea.bpel.compiler.CompilerException: Unexpected error compiling the runtime metadata for Split-Join: "FISRecXferInqServiceV2_0/SplitJoin/RecXferInqSJ".
         at com.bea.alsb.flow.compiler.ProcessMetaDataFactory.create(ProcessMetaDataFactory.java:99)
         at com.bea.alsb.flow.resources.ResourceDeployer.deploy(ResourceDeployer.java:104)
         at com.bea.alsb.flow.resources.ResourceDeployer.access$100(ResourceDeployer.java:64)
         at com.bea.alsb.flow.resources.ResourceDeployer$LoadListener.onLoad(ResourceDeployer.java:545)
         at com.bea.wli.config.impl.ResourceListenerNotifier.sendLoadNotificationsInContext(ResourceListenerNotifier.java:239)
         Truncated. see log file for complete stacktrace

    Most 8.1 development was done with Workshop (the version before Eclipse integration). It is not set up to do Workshop Framework builds with Eclipse OOTB.
    If you are going to use Eclipse, then I would guess that your builds would be best done using Ant or similar. Check out the wls web service samples that install with the product and see if you can use any of those as a basis for using ANT in Eclipse.
    This is only theory, as I have not worked extensively with 8.1.

  • [not solved] Error opening the editor - assertion failed

    Hello everyone,
    I began a project under Linux with Eclise and Flex builder alpha build 3.0.204732.
    Everything's going fine under Linux but then, I wanted to access my project from Windows using Flex builder 3.0.2.214193.
    If I do that, I receive the error: "Error opening the editor. Reason: Assertion Failed:"
    Could you help me?
    Thanks a lot

    up

  • Transaction RZ10 fails, unknown error calling profile editor.

    I tried to create a new Instance Profile in the default client 001, got some warnings and errors that some entries were not recognised (including 'login/no_automatic_user_sapstar')  however managed to save the changes. Now when trying to execute the transaction RZ10 again, i get the error message "Unkown error calling profile editor. Is there a way to fix this problem is so please let me know how. Please note this a personal system and i happen to be the 'basis team' so please assist.

    The contents of my DEFAULT.PFL file looks as shown below. I still get the error "Unkown error calling profile editor". Is anything wrong about the entries in the file?
    SAPDBHOST = nextgen
    j2ee/dbtype = sap
    j2ee/dbname = NSP
    j2ee/dbhost = nextgen
    j2ee/dbadminurl = http://nextgen:9999/webdbm?Server=nextgen&Database=NSP&User=control
    SAPSYSTEMNAME = NSP
    SAPGLOBALHOST = nextgen
    login/no_automatic_user_sapstar = 0
    SAP Message Server for ABAP
    rdisp/mshost = nextgen
    rdisp/msserv = 0

  • Disk error with scratch disk

    All my MACINTOSH versions of Photoshop - S5, Elements 10, Elements 11 - display the opening start screen, but ABORT THE LAUNCH of the EDITOR with the error message:
    "Could not open scratch file because of disk error."
    "Could not initialize Photoshop Elements because the preferences file was invalid (it has been deleted)"
    I have cleaned up my external disks so that they all have at least 100GB of free space
    How can I correct this so that I can recover the Preferences, re-establish the Scratch Disk, and launch the Photoshop Editor?
    <E-mail address removed by Moderator>

    Please change the disk permission . Right click on the disk and choose "Get Info". Change the permissions for everyone to "Read and Write". You can also refer to this related post
    http://forums.adobe.com/message/4331448#4331448

  • Java web start error running Asset Editor or any jnlp page

    When I try to launch Asset Editor or Import/Export or any of the jnlp pages that runs using Java Web Start, I get an error. Java 7 Web start starts but It throws “Could not connect to Server. Please check your Java Web Start and Browser proxy settings”.
    I read conflicting opinions on the internet as to what version of JRE/JDK is needed and potentially some issues running Java Web start with Java 7. I have 64-bit java 1.7.0_45 JDK/JRE installed and no other version. I tried installing 32-bit 1.7.0_45 as well. I have tried to run it from 32-bit as well as 64-bit browser also. All situations provide the same error.
    However, when I install JRockit, it seems to work fine. But we cannot use jrockit. We have to use IBM JDK/JRE 7 eventually. Currently, the java web start does not work on Oracle Java as well as IBM JRE.
    Any help is much appreciated.

    I found a solution for this problem. We have to apply patch 17634436.
    https://support.oracle.com/epmos/faces/ui/patch/PatchDetail.jspx?_afrLoop=149081897091441&patchId=17634436&_afrWindowMode=0&_adf.ctrl-state=xfsajjmff_74
    Just thought it will be useful for anyone encountering this problem.

  • Excel fails with unexpected error unless vba editor opened before running

    i have an excel macro which fails with an unexpected error unless i open vba editor first
    EXACT MESSAGE IS
    "MICROSOFT EXCEL HAS ENCOUNTERED A PROBLEM AND NEEDS TO CLOSE, WE ARE SORRY FOR THE INCONVENIENCE"
    I HAVE SENT AN ERROR REPORT many times, no response
    this prevents running as auto_open
    why?
    what initialization takes place by opening vba editor that does not take place with out doing so?

    As this is unusual behavior (not seen by most of us Excel users), and you indicate that it happens on multiple PCs (so it isn't something corrupt on just one machine), it seems likely that it is something specific to the code you are trying to run.
    It might be helpful if you post your code, and specifically where you are placing the code (personal.xlsb, a regular module, a class module, behind a specific worksheet, or behind the "this workbook" object).
    Also, how are you triggering the macro- are you running it from the macro dialogue box, a custom worksheet button, a userform, or something else?

  • Error while creating editor in forms

    hi friends,
    im trying to create an editor for job column .
    i have items empno,ename,job,sal,hiredate,mgr.
    im trying to create editor for job text item.
    backend plsql program i ve written as
    declare
    edid EDITOR;
    ival varchar2(100):='enter desg manager,analyst....';
    oval varchar2(100);
    res boolean ;
    begin
         edid:=find_editor('job_editor'); /*job_editor is editor created in the object navigator */
         if id_null then
              message('job editor not from.......');
         else
              show_editor(edid,ival,0,100,oval,res);
                   if res=true then
                   :emp.JOB:=oval;
              end if;
              end;
    after compiling this program unit im getting error
    encountered the symbol ";" when expecting one of the following:
    if
    Not sure whats wrong with the program...help !

    ID_NULL returns boolean value, true of false.
    It checks for the value and if it exists then returns true.
    if ID_Null returns true if value doesnt exist
    If ID not_null returns true if value exist.
    u need to declare id_null in the declaration.

  • Error in Logic Editor

    Hi,
    I want to create transactions using Logic editor of SAP xMII.
    Whenever i click on 'Link' option it gives error saying 'Exception has been occured'
    null.
    Same is case when i work on existing transacttions.
    Can anyone please help me in resolving this.
    Thanks in advance
    Regards,
    Shalaka

    Shalaka,
    Can you please confirm the version of xMII you are using? Also, can you tell me which version of the Sun JDK you are running on both the xMII server and the workstation you are working with the Logic Editor?
    Regards,
    Michael Teti

  • SQL Error in Query Editor

    Hello All,
    I am new to the Sun Java Studio Creator and in the tutorial Linking Components to Data tutorial.
    I created my own datasource which is a MS Access database.
    I have a simple look up table and I dragged the table onto the dropdown list as instructed and nothing happened. The dialog box the tutorial said would appear didn't appear.
    So I right clicked on the rowset added on to the page to get in the Query Editor.
    When opening the Query Editor, I get an error:
    Error Connecting to Database:
    java.sql.SQLException:[Microsoft][ODBC Driver Manager] does not support this function
    The SQL reads in the editor is something like this:
    SELECT ALL tableName.Column 1 FROM tblName
    Why does it automatically put the "All". Is that standard SQL? I don't think so. But I guess I could be wrong.
    I have not seen this used in other SQL. I've used T-SQL, PL/SQL, ACCESS SQL and never had I seen the "ALL" preceding the columns of the table.
    Quite frustrating when something as simple as a simple SELECT statement does not work when you're trying to learn a new tool.
    When adding the datasource, the test connection is fine. The query editor sees all of my tables in the MS Access database and all of the added table's columns.
    Am I missing a driver, or update to a driver? Or is this Sun's way of saying "Screw Your Microsoft database use something that we want you to use!!"
    Which is not pretty cool.
    I'm a newbie with this tool, but I have been coding for a while using MICROSOFT products. And have not had the same problems as this. Or at least getting help through documentation.
    I'm just venting here. I want to learn this tool. And when simple processes doesn't work. And documentation in why it's now working is hard to find, it gets quite frustrating.
    Anyone's help would be greatly appreciated.
    I truly appreciate your time for reading through my frustration.

    Hi,
    Please check the driver and also take a look at the link for "Supported Database Servers and JDBC Drivers"
    http://www.sun.com/software/products/jscreator/sysreq.xml
    regards
    MJ

  • Portal runtime error in Theme editor:Urgent

    Hi All,
    I am getting the following error when i am logging as a j2ee_admin user in Theme Editor and
    also when i click on theme transport it is not displaying any contents.
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/administrator/super_admin/super_admin_role/com.sap.portal.system_administration
    /com.sap.portal.system_admin_ws/com.sap.portal.themes/com.sap.portal.theme_editor/com.sap.portal.styleeditor
    Component Name : null
    Page could not create the iView.
    See the details for the exception ID in the log file.
    the default trace is as below
    "application webdynpro/dispatcher Processing HTTP request to servlet [dispatcher] finished with error.
    The error is: java.lang.NullPointerException: null
    Exception id: [0003BA3630CD0076000005BF00005B3B00044B53786F03CB]
    The iview for theme editor does not exist . any clue how to over come this.
    Thanks & Regards
    santosh

    Hi All,
    Issue is resolved . Deleted one of the standard theme through system admin->support->support desk->theme and restarted the server.
    Regards
    Santosh

Maybe you are looking for

  • Accidental sync!! Help!!

    I just got an iPhone... as in, I got back from the Verizon store about 20 minutes ago. When I got home, I plugged my phone into my computer (a MacBook Pro), expecting to upload my iTunes library to my phone. Instead, iTunes treated my iPhone as my iP

  • Price List on internal inventory transactions

    SAP 8.8 On Sales docs and Purchase docs the price list to use comes from the BP card's price list. On internal inventory transactions, Good Receipt and Goods Issue, my docs default to Last Purchase Price. I want them to default to a different price l

  • Why does PSE 10 Landscape Panorama feature cause program to crash?

    I've used this feature for a long time, but now it no longer works. Every time I try to invoke it, the program crashes. Other features seem to work fine, but the landscape panorama does not. I've tried repairing the installation, I've uninstalled/rei

  • Will X-FI Fatal1ty output be eno

    Hi, just that i bought Sennheiser HD 650 headphones and they do sound awesome with this soundcard. I`m sill thinkin that will this Fatalty Output be enough for these. I do use this front panel and i have understand that there is amplify, but will tha

  • P8 Neo-V Motherboard wont boot....

    HI just bought a MSI P8 Neo-V Motherboard with a Celeron processor on it. Problem is that it wont even boot... i tried changing powersupply, memory etc etc but still nothing... BUT it gives a beep errror... LOL dont know how to say this but here goes