Show/debug sql in the console

Hello

i ' v an application in jdeveloper with adf, appmodules, etc. (Fusion Web Application).

I only need to see in the console sql queries are running during execution.


Someone at - it an idea?

Thank you!

Hello
Add - Djbo.debugoutput = console in the java options in the LaunchSettings:
Manage Configurations run-> select Add your Configurations to run you want to debug-> click on Edit-> the - Djbo.debugoutput = console in the input text JavaOptions-> click OK

Jack

Tags: Java

Similar Questions

  • AWR show this sql as more CPU consuming sql. Is - this need for sql tunning?

    Hello

    Awr showing this sql as the consumer of CPU above reports

    Please consider me as a newbie and help me understand this.

    Thanking you...
    SQL ordered by CPU Time            DB/Inst:  Snaps:  
    -> Resources reported for PL/SQL code includes the resources used by all SQL
       statements called by the code.
    -> % Total DB Time is the Elapsed Time of the SQL statement divided
       into the Total Database Time multiplied by 100
    
        CPU      Elapsed                  CPU per  % Total
      Time (s)   Time (s)  Executions     Exec (s) DB Time    SQL Id
    ---------- ---------- ------------ ----------- ------- -------------
         2,658      2,665            1     2658.18     5.7 5aawbyzqjk8by
    select distinct trp.site_id from tas_receipts_process trp , tas_tsa_info tti, ta
    s_site ts where trp.tsa_id = tti.tsa_id and tti.status = 1 and ts.site_id = trp
    .site_id and (tti.max_install != trp.pushed_rsn and ((tti.max_install = 0 and
    (trp.pushed_rsn - trp.curr_rsn) < ts.workahead_count * :1) or (tti.max_install
    SQL full = >
    select distinct trp.site_id from tas_receipts_process trp , tas_tsa_info tti, tas_site
    ts 
    where 
    trp.tsa_id = tti.tsa_id 
    and tti.status = 1 
    and ts.site_id = trp.site_id  
    and
    (
    tti.max_install != trp.pushed_rsn 
    and  (
           (tti.max_install = 0 and 
               (trp.pushed_rsn - trp.curr_rsn) < ts.workahead_count * :1
           ) or  
           (tti.max_install > 0 and 
               (trp.pushed_rsn - trp.curr_rsn) < ts.workahead_count * :2
           ) or   
           (tti.max_install = trp.pushed_rsn and
           tti.max_install <> 0 
           ) 
         )
    ) or 
    (trp.pushed_time != 
    (
    to_date(tti.created_date,'dd-MON-yyhh24:mi:ss') + (1/24/60) * ts.workahead_time
    ) and  
    (
      (
    to_date(sysdate,'dd-MON-yyhh24:mi:ss') + (1/24/60) * :3
      ) > trp.pushed_time
    )
    )
    get the plan of the explain for the above sql command = >
    QL> SELECT plan_table_output FROM TABLE(DBMS_XPLAN.DISPLAY_CURSOR('g6c8y31xr06vp',0,'ALL'));
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    SQL_ID  g6c8y31xr06vp, child number 0
    -------------------------------------
    select distinct trp.site_id from tas_receipts_process trp , tas_tsa_info tti, tas_site
    ts  where trp.tsa_id = tti.tsa_id and tti.status = 1 and ts.site_id = trp.site_id  and
    (tti.max_install != trp.pushed_rsn and  ((tti.max_install = 0 and (trp.pushed_rsn -
    trp.curr_rsn) < ts.workahead_count * :1) or  (tti.max_install > 0 and (trp.pushed_rsn -
    trp.curr_rsn) < ts.workahead_count * :2) or   (tti.max_install = trp.pushed_rsn and
    tti.max_install <> 0 )  )) or (trp.pushed_time != (to_date(tti.created_date,'dd-MON-yy
    hh24:mi:ss') + (1/24/60) * ts.workahead_time) and  ((to_date(sysdate,'dd-MON-yy
    hh24:mi:ss') + (1/24/60) * :3) > trp.pushed_time))
    
    Plan hash value: 2862358316
    
    ------------------------------------------------------------------------------------------------
    | Id  | Operation               | Name                 | Rows  | Bytes | Cost (%CPU)| Time     |
    ------------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT        |                      |       |       |   601K(100)|          |
    |   1 |  HASH UNIQUE            |                      |     4 |   216 |   601K (10)| 02:00:14 |
    |   2 |   CONCATENATION         |                      |       |       |            |          |
    |   3 |    NESTED LOOPS         |                      |   200M|    10G|   579K  (6)| 01:55:52 |
    |   4 |     MERGE JOIN CARTESIAN|                      |  2849 | 99715 |    12   (0)| 00:00:01 |
    |   5 |      TABLE ACCESS FULL  | TAS_SITE             |     7 |    70 |     3   (0)| 00:00:01 |
    |   6 |      BUFFER SORT        |                      |   407 | 10175 |     9   (0)| 00:00:01 |
    |*  7 |       TABLE ACCESS FULL | TAS_RECEIPTS_PROCESS |   407 | 10175 |     1   (0)| 00:00:01 |
    |*  8 |     TABLE ACCESS FULL   | TAS_TSA_INFO         | 70411 |  1306K|   203   (6)| 00:00:03 |
    |*  9 |    HASH JOIN            |                      |     2 |   108 |   203   (2)| 00:00:03 |
    |* 10 |     HASH JOIN           |                      |   407 | 14245 |     7  (15)| 00:00:01 |
    |  11 |      TABLE ACCESS FULL  | TAS_SITE             |     7 |    70 |     3   (0)| 00:00:01 |
    |  12 |      TABLE ACCESS FULL  | TAS_RECEIPTS_PROCESS |   407 | 10175 |     3   (0)| 00:00:01 |
    |* 13 |     TABLE ACCESS FULL   | TAS_TSA_INFO         | 21474 |   398K|   196   (2)| 00:00:03 |
    ------------------------------------------------------------------------------------------------
    
    Query Block Name / Object Alias (identified by operation id):
    -------------------------------------------------------------
    
       1 - SEL$1
       5 - SEL$1_1 / TS@SEL$1
       7 - SEL$1_1 / TRP@SEL$1
       8 - SEL$1_1 / TTI@SEL$1
      11 - SEL$1_2 / TS@SEL$1_2
      12 - SEL$1_2 / TRP@SEL$1_2
      13 - SEL$1_2 / TTI@SEL$1_2
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       7 - filter("TRP"."PUSHED_TIME"<TO_DATE(TO_CHAR(SYSDATE@!),'dd-MON-yy
                  hh24:mi:ss')+.000694444444444444444444444444444444444445*:3)
       8 - filter("TRP"."PUSHED_TIME"<>TO_DATE(INTERNAL_FUNCTION("TTI"."CREATED_DATE"),'dd-M
                  ON-yy hh24:mi:ss')+.000694444444444444444444444444444444444445*"TS"."WORKAHEAD_TIME")
       9 - access("TRP"."TSA_ID"="TTI"."TSA_ID")
           filter(("TTI"."MAX_INSTALL"<>"TRP"."PUSHED_RSN" AND (("TTI"."MAX_INSTALL"=0 AND
                  "TRP"."PUSHED_RSN"-"TRP"."CURR_RSN"<"TS"."WORKAHEAD_COUNT"*:1) OR
                  ("TTI"."MAX_INSTALL">0 AND "TRP"."PUSHED_RSN"-"TRP"."CURR_RSN"<"TS"."WORKAHEAD_COUNT"*:2
                  ) OR ("TTI"."MAX_INSTALL"="TRP"."PUSHED_RSN" AND "TTI"."MAX_INSTALL"<>0)) AND
                  (LNNVL("TRP"."PUSHED_TIME"<TO_DATE(TO_CHAR(SYSDATE@!),'dd-MON-yy
                  hh24:mi:ss')+.000694444444444444444444444444444444444445*:3) OR
                  LNNVL("TRP"."PUSHED_TIME"<>TO_DATE(INTERNAL_FUNCTION("TTI"."CREATED_DATE"),'dd-MON-yy
                  hh24:mi:ss')+.000694444444444444444444444444444444444445*"TS"."WORKAHEAD_TIME"))))
      10 - access("TS"."SITE_ID"="TRP"."SITE_ID")
      13 - filter("TTI"."STATUS"=1)
    
    Column Projection Information (identified by operation id):
    -----------------------------------------------------------
    
       1 - "TRP"."SITE_ID"[NUMBER,22]
       2 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
           "TS"."WORKAHEAD_TIME"[NUMBER,22], "TRP"."TSA_ID"[NUMBER,22],
           "TRP"."SITE_ID"[NUMBER,22], "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22],
           "TRP"."PUSHED_TIME"[DATE,7], "TTI"."TSA_ID"[NUMBER,22], "TTI"."STATUS"[NUMBER,22],
           "TTI"."MAX_INSTALL"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7]
       3 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
           "TS"."WORKAHEAD_TIME"[NUMBER,22], "TRP"."TSA_ID"[NUMBER,22],
           "TRP"."SITE_ID"[NUMBER,22], "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22],
           "TRP"."PUSHED_TIME"[DATE,7], "TTI"."TSA_ID"[NUMBER,22], "TTI"."STATUS"[NUMBER,22],
           "TTI"."MAX_INSTALL"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7]
       4 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
           "TS"."WORKAHEAD_TIME"[NUMBER,22], "TRP"."TSA_ID"[NUMBER,22],
           "TRP"."SITE_ID"[NUMBER,22], "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22],
           "TRP"."PUSHED_TIME"[DATE,7]
       5 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
           "TS"."WORKAHEAD_TIME"[NUMBER,22]
       6 - (#keys=0) "TRP"."TSA_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
           "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7]
       7 - "TRP"."TSA_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
           "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7]
       8 - "TTI"."TSA_ID"[NUMBER,22], "TTI"."STATUS"[NUMBER,22],
           "TTI"."MAX_INSTALL"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7]
       9 - (#keys=1) "TRP"."TSA_ID"[NUMBER,22], "TTI"."TSA_ID"[NUMBER,22],
           "TS"."SITE_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
           "TS"."WORKAHEAD_TIME"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
           "TRP"."PUSHED_RSN"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7],
           "TRP"."CURR_RSN"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7], "TTI"."STATUS"[NUMBER,22],
           "TTI"."MAX_INSTALL"[NUMBER,22]
      10 - (#keys=1) "TS"."SITE_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
           "TS"."WORKAHEAD_TIME"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
           "TRP"."TSA_ID"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7], "TRP"."CURR_RSN"[NUMBER,22],
           "TRP"."PUSHED_RSN"[NUMBER,22]
      11 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
           "TS"."WORKAHEAD_TIME"[NUMBER,22]
      12 - "TRP"."TSA_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
           "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7]
      13 - "TTI"."TSA_ID"[NUMBER,22], "TTI"."STATUS"[NUMBER,22],
           "TTI"."MAX_INSTALL"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7]
    
    
    105 rows selected.
    sizes of the objects concerned = >
    OWNER           SEGMENT_NAME                   SEGMENT_TYPE         TABLESPACE_NAME      EXTENTS           BYTES_
    --------------- ------------------------------ -------------------- -------------------- ------- ----------------
    AZD_SCHM     TAS_TSA_INFO                   TABLE                TATSU_DATA_TS             22        7,340,032
    AZD_SCHM     TAS_TSA_INFO_PK                INDEX                TATSU_DATA_TS             17        2,097,152
    --------------- ------------------------------ -------------------- -------------------- ------- ----------------
    AZD_SCHM     TAS_RECEIPTS_PROCESS           TABLE                TATSU_DATA_TS              1           65,536
    AZD_SCHM     TAS_RECEIPTS_PROCESS_IDX       INDEX                TATSU_INDEX_TS             1           65,536
    --------------- ------------------------------ -------------------- -------------------- ------- ----------------
    AZD_SCHM     TAS_SITE                       TABLE                TATSU_DATA_TS              1           65,536
    AZD_SCHM     TAS_SITE_NAME_UNQ              INDEX                TATSU_INDEX_TS             1           65,536
    AZD_SCHM     TAS_SITE_PK                    INDEX                TATSU_DATA_TS              1           65,536
    --------------- ------------------------------ -------------------- -------------------- ------- ----------------
    Please suggest how to tune this above SQL

    Above sql plan looks good


    Any comment and help is appreciated highely.

    Thank you and best regards,
    IVW

    Hello
    It is a production system?
    Are you a license to use the AWR?

    concerning

    Alan

  • Reference Dell Remote Access Controller 5 shows "Out of Range" in the console screen

    Hello world

    If anyone has seen this before? Basically when I connect to the DRAC web interface, click the console tab, then click 'connect' It evokes the session Viewer but it does not display anything on the screen, rather it says "Out of Range" in a green background.

    Help, please!

    Thank you

    Arjuna


  • Dreamweaver freezes every morning, the console shows he's going through all my fonts?

    I'm on a mac, 10.9.2, with Dreamweaver CC (just what is the latest version). Every morning, after the start-up of Dreamweaver, I get about a minute or two, then it freezes. When I check the console log, I see that he's going through all of my fonts. I could publish the newspaper, but it's the same line over and over again, just with different fontnames (and unfortunately I don't maaaany fonts, but only a few of them are active):

    Note the performance of CoreText: customer called CTFontCreateWithName() using the name "Futura Light" and got with name 'FuturaBT-Light' PostScript fonts For optimal performance, use only PostScript names when calling this API.

    I have to admit that I don't know what that means, or what to do about it? CC other applications do not do that, only Dreamweaver (which shouldn't need to all fonts at first, with the exception of a few standard fonts-batteries). Anyway, usually I force - quit Dreamweaver and after that it works fine (as fine as Dreamweaver is usually the case, at least).

    A note on the side - here at the office, we use Universal Type Client of Extensis font management.

    Any help? Good ideas? Lucky guesses? ;-)

    Thank you

    We have checked the issue & looks like DW starts scanning all Extensis font at startup. We are studying it.

    In the meantime, it would be great if you can file a bug here. This will help us to give priority to it based on the number of requests from users.

  • Prevent logging of system information in the Console

    I'm new to BB development and use the Eclipse plugin for coding/debugging.  The Eclipse console window appears to show an endless stream of system messages. Things like:

    You have no control over that.

    As a workaround, we prefix console logging with a value of specific application, such as FOO:

    Then we can copy the output to the console and the filter using fgrep are looking for "FOO:"in the first positions of each line. "

  • The console log

    Is it possible to keep the console running log after leaving the application after you run it first in the SDK. I need for the objective test. Thank you

    I'll expand what Simon says in what concerns the w slog2info with SSH command.

    In the SDK, you must go to the prospect of QNX system information, which should be the last point of view button near the top right corner for QNX Momentics.

    Any device you run your application, you should see it on the left side for the target browser.  Right click and select start SSH Session (if it says not connected click the right button and choose Connect). Then, in the bottom window, you should be connected to the device. At the prompt ($), type slog2info - w...  The w option switch is standby mode who listens to the new printed information.

    If you don't want to see the information on spam, but only your stuff qDebug, you must use a key word or phrase in debugging so that you can make:

    slog2info w | grep Debug

    In this case it only will show you the lines that contain the word "Debug"... The ' |' symbol is the vertical line on your keyboard and not 'I '...

  • where can I see the console.log?

    Hi, I use console.log in my QML app to do some debugging.

    the problem is, I don't see any output.

    I put the conf of generation of the device debugging and I also use debugging

    Then I look in the console windows and see nothing.

    I have no idea why RIM off the console in IDE, but from this page:

    https://developer.BlackBerry.com/Cascades/downloads/releasenotes

    1. in the IDE, in the view target browser, right click on the target of the device. Click launch SSH Session.
    2. in the terminal that appears, do one of the following:
    a. to view logs of current slogger2, type slog2info.
    b. to display the output in real time for the processes that are being debugged (for applications that are running in development mode), type slog2info - w.
    c. to display help on slogger2, type slog2info - h.

    You can also access the journal directly files in/tmp/slogger22 on the device and browse these newspapers slog2info at a later date.

    It shows all the newspapers, entries for the same console.log () of Javascript.

  • Distorted screen of the console using Ubuntu Linux on Satellite C70-B-212

    Hi all

    I have a problem with Linux on my laptop Satellite C70-B-212. The videochip Intel Graphics 4400 is supported by Linux, but on this laptop, it gives very distorted output on the console screen. I see a few vertical lines on the screen showing a few ghosts strange images of the output.

    The Office of exit itself seems to stop smoking well, until I have a screen and move it to the bottom of the screen. You can see the top of the screen some distortion in the upper line.

    In Windows everything works fine. When I use the parameter 'nomodeset' turns off the kernel mode setting these lines do not appear. But then, I expect that 3D hardware acceleration is disabled too.

    I suspect that this is a timing issue with the screen of the computer. Just a very minor lag on the clocks or sync.
    It could be just my laptop and then it just cloud be replaced or maybe it has to do with the series.
    Anyone seeing the same issue on this model or series.

    Having Linux on C70-B-212.
    Who can verify this by starting Linux liveCD on laptop C70-B-212.

    Thank you

    Marco

    Hi Marco

    It sounds like a driver problem => kernel.

    You can try a kernel later maybe?
    Do you know that you are using atm?

    in terminal type:

    uname - r

    Course Fedora uses 3.16 nuclei which is a very recent (if not the most recent) output.

    Some Ubuntu distro oriented have test of nuclei in the repositories, you will have to add it manually.
    Maybe it's worth a try?

    Tom BR

  • How to get the console on cRIO based on linux?

    Hi all

    I develop new things on a cRIO 9068. This cRIO runs Linux RT.

    I built a framework of cRIO app and use for several years, I use the console to debug my code and have the status of my displayed cRIO.

    I can't find a way to see the console with the 9068 when I send strings to it (see the simple example attached to this post).

    Can someone help me see that I send to the console?

    BTW: I do not want to write debugging on the serial port, only to watch channels.

    In fact, in order to obtain the result (which is for the port series, either through the exit option "monitor" that requires activation of the console series see, or the serial port as usual without configuring the console out) to be visible, the network, there is not a great, simple way to do a little more ethernet today.

    One option you have is to change how lvrt is launched to save to a file and to access this file (either from lvrt, webdav or ssh), wrote messages on the screen. It is a more down-n-dirty approach, but he could get the results you wanted.

    Change the /etc/init.d/lvrt-wrapper or/usr/local/natinst/labview/lvrt-wrapper file to channel the monitor console to a file

    (note that brackets [] denote a touch, the lines that begin with / / are notes and does not have to be entered)

    VI/location/of/lvrt-wrapper

    Go to the line that looks like 'exec. "/ lvrt.

    [i]

    Add the following code at the end of the line

    [space]>[space]/home/lvuser/lvrt.log

    [:] [w]

    The line should now look like 'exec. "/ lvrt > /home/lvuser/lvrt.log.

    Restart your target, check the contents of the file with "cat /home/lvuser/lvrt.log.

  • Unable to open the console (~) inside the game of oblivion.

    Hi guys, I have first pick in forums and countless other sites including instances of Bethesda Softworks.
    You have 2 similar cases with the console of the game Fallout 3.
    However, I turned to Microsoft for answers, because I found the problem: just need a specific solution.

    Information on my computer:

    Dell Studio XPS 1340 (laptop)
    Windows Vista Ultimate
    updated to service pack 2 (64-bit)

    To only justify some obvious things:
    -Yes my computer meets and exceeds the requirements of the game.
    -Yes the ~ button works in other programs.
    -Yes, I tried Shift + ' do ~ in the game (does not work)
    -Yes, I have uninstalled and reinstalled the game
    -Not my computer did not come with a remote
    -J' entered in the menu options (in the game) and changed another command for example like button next with ~ to see if the game was recognized and it didn't.

    There are a few bugs that can be made initially to counter the problem with the console.

    • Change the size of the screen so that you can see the "missing" console (where infact it was just out of sight)
    • Set up the document Oblivion.ini - bAllowConsole = 1 (corrected most of the problems where it was set to 0)
    • Download a mod to change the game and use it to activate the console in a different way (in this case using equipping an item)
    • If you have Microsoft Media Center, then; Disable the MIRC / Microsoft transceiver eHome infrared (or (EC) ITECIR infrared receiver), or inside of the appliance to manage

    My specific problem I have identified is that my laptop has a built-in infrared censor (and has the installed Microsoft Media Center), this has been identified on many forums as contradictory with the game console button (~). According to most of the solutions that have been validated by disabling it should fix it.

    I found the Microsoft eHome infrared transceiver AND IR receiver ITECIR (EC) in my device manager under human interface devices.
    But I can not disable - the option is greyed out =)
    (And Yes, I'm the administrator of this computer [the only account as well])

    So to make a very long explanation to a question.
    How can I disable the infrared in my device manager hardware when I am the administrator, but it is grayed out?

    Thanks for your time, Cappwood

    Hey Cappwood.
    I was searching Google earlier, I have the same problem. Sometimes I play a game called "Farcry" and in order to show the console (for once coming from servers if they are tks, spwnkillers, cheaters, etc, and of course the order entry), I have to set up the "key (located under my ESC key). Until today, I have to keep uninstalling 'infrared transceiver Ehome' whenever I start my computer laptop, or sometimes just when I connect a mouse or something.
    Fortunately, I found a solution on Google :) (The below is copied from another forum):

    (* Note that if you have Microsoft Ehome... you click right on this and uninstall for number of step 3).

    Originally posted by epic
    SOLVED! Here is what I did to fix it (and no need to uninstall it whenever you want to play XI):

    (1) disable automatic driver downloads:
    -Start menu-> right-click computer-> properties-> system settings advanced (upper-left)-> hardware-> Windows Update driver settings-> select 'never check the drivers when I connect a device.' -> OK-> Apply-> OK

    (2) disable SSDP Discovery:
    --> Start menu type "services.msc" without the quotes and press enter-> scroll down to "SSDP Discovery"-> right click and select Properties-> change Startup Type to "Disabled"-> Apply-> OK

    (3) uninstall ENE CIR Receiver:


    -Start menu-> right-click computer-> manage-> Device Manager-> click on the + next to Interface devices-> right-click "ENE CIR Receiver" and select uninstall-> MAKE SURE to CHECK THE UNINSTALL SOFTWARE BOX ON THE PROMPT (it will take Microsoft eHome Infrared Trasceiver with it)-> OK-> let the uninstall, take turn-> restart the computer

    (4) prevents the installation of IR device drivers:
    -Upon restart, you will receive a prompt asking you if you want to install the device drivers-> SELECT NEVER "for this DEVICE.

    (5) turn the SSDP Discovery:
    -Follow the signs to start and select 'Manual' from the drop-down menu (Startup Type)-> Apply-> OK

    (5) play XI
    -

    A credit of Milton on the BG Forums for the SSDP Discovery thing. Feel free to post these instructions in any thread on this issue. Enjoy!

    The thread of the forum can be found here, if you want to have a glance / thank so much! :

    http://www.bluegartrls.com/Forum/67734-uninstalling-Microsoft-eHome-infrared-transceiver.html

    As Epical says, thanks to Milton, Epical comes to the solution in a little easier to follow the steps. Milton has provided the solution :) But still, I personally thank Milton and Epical much for this, it was just one of those annoying things in life that I thought could easily be avoided.

    I hope it works for you,
    Jamie B.

  • The Task Manager currently has two active users in the console session, but I am the only user.

    Task Manager

    my task manager currently has two active users in the console session. I am the only user of the computer and when clicking on USERS it always shows only one user. What or OMGE could be the cause.

    Hello

    Open the Task Manager->, click on users-> right click on another user who isn't currently active and choose log off.

    This can occur when the user account is not properly disconnected.

    I hope this helps.

  • Information on how to execute SQL on the CUCM himself queries please

    Hello all,.

    I need to run a SQL on the CUCM enumerate all directory numbers, their score and their external mask values.

    I came across this snippet below earlier so I have a bit of an idea of how do but iw would be great to see some other examples of sql queries.

    Any help is most appreciated.

    Also, is there a document somewhere to tell me how to run these queries?

    Thanks in advance

    Concerning

    Amanda

    *******************************************************************************************************************************************************************************

    Helps you try if this the CLI SQL query execution, it must list all DN with CFA allowed the VM or a DN:

    run sql select dnorpattern, cfadestination, cfavoicemailenabled CallForwardDynamic c, numplan n where c.fknumplan = n.pkid and (cfadestination! = "or cfavoicemailenabled 't =')

    Hi Amanda

    Basically, this is standard SQL, so that he would not bad at google 'informix instructions' select and do a bit of reading to get the basics. There are millions of permutations of requests so it comes to understand the syntax and then only by applying to the database in question. The only difference when running the commands in the CLI are:

    -Precede you the standard informix with "execute sql" SQL statement

    -You get no help from CUCM with syntax, so you might be well advised to use something which includes SQL a bit and he colorized you type, and then paste the commands resulting in the CUCM SSH window. I use an editor called JEdit, if you create a text file and save it as a file ending with .sql, it will highlight your syntax.

    -Other programs are available that make reasonable syntactic (EQ SquirrelSQL) that are designed to query the DB directly, but you can't really query directly against the DB for security reasons. You will still need to copy and paste commands.

    Now... to understand the DB you will need a reference describing all the tables, etc.. Here it is:

    http://www.Cisco.com/en/us/products/SW/voicesw/ps556/products_programming_reference_guides_list.html

    Choose your version of CUCM and download the document 'data definition '.

    Some notes on the order:

    run sql: is just the CLI command which tells the shell to perform the following as SQL.

    Select: the SQL command to recover data

    dnorpattern, cfadestination, cfavoicemailenabled: column names to retrieve

    callforwarddynamic c, numplan n: the names of the two tables and abbreviations that you want to refer to them as

    where c.fknumplan = n.pkid: This tells SQL to return values in the two tables where these fields match. In the data definition, you will see notes that c.fknumplan (i.e. the column fknumplan in table callforwarddynamic, as indicated by the prefix c.) refers to the PKID column in the area of the numplan. It is a type of join in the very standard DB CCM.

    and ("cfadestination! =" or cfavoicemailenabled = "t"): another clause, fundamentally in this application that we want to see only the rows where cfadestination is not empty or cfavoicefmailenabled has the value 't' for real).

    Most of the tables are related in two ways in this database:

    -a column "fk" prefix refers to the field of pkid (there is always only one field per table pkid) in the table following the prefix "fk". For example above fknumplan refers to the numplan, pkid field table. fkdevice refers to the machine table, pkid field.

    -a prefiex of 'traditional knowledge' column usually refers to a table enum which is preceded by 'type '. It is a table that maps the numerical value in the field of 'traditional knowledge' into a string. An example would be tkmodel - it is the type of physical phone (e.g. as 7962) and mapped as the column and a table called typemodel model 'enum' in the table.

    Concerning

    Aaron Harrison

    Senior Engineer at Logicalis UK

    Please note the useful messages...

  • Get the output of the console on Simulator BB10

    Is it possible to access the console (or at least the stderr) output a basic NDK application deployed to the simulator of th?  I tried telnet in the Simulator to run it, but the devuser does not have permissions on the files of the app.

    Or maybe is there a log of debugging as for Android?

    I would like if possible, avoid using the IDE for this.

    You don't actually run the console application, but you can use command line tools to look at the output of the application log.

    Basically SSH into it (it is not really Telnet) and navigate to the folder of the application under the/accounts/1000/appdata /... then run "tail-f newspaper/journal" after the launch of the app, or just "cat/journal of newspapers". If the output you are interested is no longer attend balls/journal because of the new substance slogger2, you would use a variant of 'slog2info w' instead.

    You are quite correct that attempting to run the application from the console did not give him the same environment and except in a very few cases, it serves no real purpose.

  • The device Debug - cannot find the app after firing the debugger

    I develop for BB 9000 (bold), on the Eclipse platform. I have the eJDE 1.0.0.67 installed with the OS pack 4.6.0.19 and 9000 Simulator.

    Regular debugging works fine. The device is identified by the debugging options screen after connecting the usb cable. When you pull the debugger of the device, the camera screen whitens and displays the message "attach debugger". On the Eclipse console, I see that the device has been attached ("' attach: success '"), and I get the endless list of "no debug information is found for FOO". After that, the device display the clock again and nothing happoens. My App is not raised, and there is not anywhere on the device.

    The debugger however is attached, as I can see the list of threads running on the device, and I get all outputs from the regular camera journal.

    What I am doing wrong? How do I launch my application for debugging?

    the debugger does not start your application.

    If the OS on JDE and device versions do not match, you may not be able to use breakpoints.
    SYSOUT etc. is always available.

  • Why the ACS is blocking my connection to the Console?

    I have aaa to my SWs one routers, but wen my server goes down that I can't have access to the console port.

    My config is attached and debug aaa authorization.

    These are debugs it for each access: Telnet user, consoling Ganymede user Ganymede and testing of Pentecost the local user.

    Telnet access

    Oct 15 01:03:09: AAA: analyze name = tty2 BID type =-1 ATS = - 1

    Oct 15 01:03:09: AAA: name = tty2 flags = 0 x 11 type = 5 shelf = 0 = 0 = 0 = channel 2 = 0 port adapter slot

    Oct 15 01:03:09: AAA/MEMORY: create_user (0x2778E84) user = ruser 'NULL' = 'NULL' ds0 = 0 port = 'tty2' rem_addr'10.10.10.23 = 'authen_type = ASCII service = CONNECTION priv = 1 initial_task_id = ' 0', vrf = (id = 0)

    Oct 15 01:03:10: CDP-4-NATIVE_VLAN_MISMATCH %: incompatibility of VLAN native on GigabitEthernet0/37 (102), was discovered with tst1-s2 GigabitEthernet0/1 (1).

    Oct 15 01:03:11: AAA/MEMORY: free_user (0x28E1BFC) user = ruser 'ACS-USER' = 'NULL' port = 'tty2' rem_addr = '10.10.10.23' authen_type = ENABLE priv = 15 = ASCII service

    Oct 15 01:03:13: AAA/MEMORY: free_user (0x2778E84) user = ruser 'ACS-USER' = 'NULL' port = 'tty2' rem_addr = '10.10.10.23' authen_type = ASCII = priv = 1 CONNECTION service

    Access to consoles (work of Pentecost the ACS user)

    Oct 15 01:08:57: AAA: analyze name = tty0 BID type =-1 ATS = - 1

    Oct 15 01:08:57: AAA: name = tty0 flags = 0 x 11 type = 4 shelf = 0 = 0 = 0 = 0 = 0 channel port adapter slot

    Oct 15 01:08:57: AAA/MEMORY: create_user (0x28AA8E4) user = ruser 'NULL' = 'NULL' ds0 = 0 port = "tty0" rem_addr = "async" authen_type = service ASCII = CONNECTION priv = 1 initial_task_id = '0', vrf = (id = 0)

    Oct 15 01:09:11: AAA/MEMORY: free_user (0x27C0DC4) = user tweak "ACS-USER" = "NULL" port = "tty0" rem_addr = "async" authen_type = ASCII service = ENABLE priv = 15

    Oct 15 01:09:18: AAA/MEMORY: free_user (0x28AA8E4) = user tweak "ACS-USER" = "NULL" port = "tty0" rem_addr = "async" authen_type = ASCII = priv = 1 CONNECTION service

    Access console (not working whit the local user)

    Oct 15 01:05:24: AAA: analyze name = tty0 BID type =-1 ATS = - 1

    Oct 15 01:05:24: AAA: name = tty0 flags = 0 x 11 type = 4 shelf = 0 = 0 = 0 = 0 = 0 channel port adapter slot

    Oct 15 01:05:24: AAA/MEMORY: create_user (0x27C1310) user = ruser 'NULL' = 'NULL' ds0 = 0 port = "tty0" rem_addr = "async" authen_type = service ASCII = CONNECTION priv = 1 initial_task_id = '0', vrf = (id = 0)

    Oct 15 01:05:36: AAA/MEMORY: free_user_quiet (0x27C1310) = user tweak "LOCAL_USER" = "NULL" port = "tty0" rem_addr = "async" authen_type = 1 = 1 = 1 private service

    Oct 15 01:05:36: AAA: analyze name = tty0 BID type =-1 ATS = - 1

    Oct 15 01:05:36: AAA: name = tty0 flags = 0 x 11 type = 4 shelf = 0 = 0 = 0 = 0 = 0 channel port adapter slot

    Oct 15 01:05:36: AAA/MEMORY: create_user (0x28D201C) user = ruser 'NULL' = 'NULL' ds0 = 0 port = "tty0" rem_addr = "async" authen_type = service ASCII = CONNECTION priv = 1 initial_task_id = '0', vrf = (id = 0)

    Oct 15 01:06:09: AAA/MEMORY: free_user_quiet (0x28D201C) = user tweak "NULL" = "NULL" port = "tty0" rem_addr = "async" authen_type = 1 = 1 = 1 private service

    Oct 15 01:06:09: AAA: analyze name = tty0 BID type =-1 ATS = - 1

    Oct 15 01:06:09: AAA: name = tty0 flags = 0 x 11 type = 4 shelf = 0 = 0 = 0 = 0 = 0 channel port adapter slot

    Oct 15 01:06:09: AAA/MEMORY: create_user (0 x 2773004) = user tweak 'NULL' = 'NULL' ds0 = 0 port = "tty0" rem_addr = "async" authen_type = service ASCII = CONNECTION priv = 1 initial_task_id = '0', vrf = (id = 0)

    Oct 15 01:06:41: AAA/MEMORY: free_user (0 x 2773004) = user tweak "NULL" = "NULL" port = "tty0" rem_addr = "async" authen_type = ASCII = priv = 1 CONNECTION service

    Thanks for your help.

    Change your orders

    AAA of default login authentication group Ganymede + activate

    the AAA authentication enable default group Ganymede +.

    TO

    AAA authentication login default group Ganymede + local

    the AAA authentication enable default group Ganymede + activate

    Kind regards

    Prem

    Please if it helps!

Maybe you are looking for

  • I play world Café images lack to ex... coffee cups when I go to receive gifts.

    I'm playing world of coffee when I go to get gifts for the ex, the lotto tickets, coffee cups that the images of the lottery tickets and cups do not exist in this case only in firefox, google chrome works correctly and the images are there, I think I

  • Equium A80: pin 45 and 47 to weld on a non compatible drive - Solution

    This info is for those who had problems with there readers. My dvd drive does not work so I'm a new Pioneer one. This has much more assured that the drive provided with the satellite A80. But the pioneer played very jerky way DVD. It was of course be

  • synchronize S 6110 PCI and PCI-6250 M series

    I would like to sync between a 6110 S PCI card and a PCI 6250 M acquisition. The first question is: do I need a RTSI cable to connect two devices? Is it possible to use a single analog trigger (sent to channel the PCI6110 PFI) to start the acquisitio

  • How can I remove a program are not not in the control panel: Add/Remove program list

    How can I remove a program are not not in the control panel: Add/Remove program list? I have a shortcut to a program called "Smart Engine" that pops up right on my desk. I can't find under anything else to remove it. I have remove the shortcuts, but

  • C++ related Question

    Hi all, since I'm a Java guy, and I have no experience in c ++. I'll settle for asking here, I suppose. Lets say: Sheet of * sheet = Sheet:: create();Page * page = new Page; Container * container = Container:: create();page.setContent (container); If