Make any database have the ability of logging within 10 seconds

JDBMonitor is an open source project. It allows the developer to add the function of database execution logging to the application. It's so easy to use that the only thing you should do is appending "listenerconfig=/config.xml:url=" to the JDBC connection string of your application,without writing any code.
With JDBMonitor,you can log the database execution in many ways,for example,to console,to file or to remote client through socket.JDBMonitor is extendible,so you can extend it to log the execution in other ways.The only thing you should do is writing a class implements the interface IDBListener.
JDBMonitor is licensed under the terms of the GNU Lesser General Public Licence (LGPL). A copy of the licence is included in the distribution.
Introduction
Almost every large database application includes its own SQL execution logging function,which not only can help the developers to debug,but also can provide information for the DBA(DataBase Administrator).
At the same time,a lot off code like”logger.logSQL(sql)” filling in the code.It’s drawbacks as follow:
(1) It’s difficult to separate this codes from the business code.
(2) It reduces the readability of the code.
(3) It slows down the application.When the logger write the SQL to file or output to console,the programme will wait util the process to finish,I/O operation is time-consuming.
(4) It’s not easy to record the execution time span,statement parameters or other information.
(5) It’s hard to add log function to an application that cann’t be modify(for example,an application that without sourcecode),or hard to add log code(for example,an application that uses ORMapping ).
JDBMonitor is different:
(1) At most,only one line code modifying will be enough.The single code is: Class.forName("com.cownew.JDBMonitor.jdbc.DBDriver") and a single change in JDBC connection String,that is modify it from “jdbc:db2://10.74.198.247:50000/app”to” listenerconfig=config.xml:url= jdbc:db2://10.74.198.247:50000/app”. In some case this single code also have no need .for instance,if you use the DataSource of WebLogic ,Tomcat or other Server.
(2) It uses another thread to log the SQL,so it almost doesn’t effect on the running speed.
(3) It’s highly extendible,so you can extend it to log the execution in other ways.For example,you can write a class to send the SQL statement through Email.
Getting JDBMonitor
The latest stable version of JDBMonitor is available from the JDBMonitor web page:
http://www.cownew.com/JDBMonitor
Using JDBMonitor
1 Drop jdbmonitor.jar to the classpath of your application
2 Make the application load the JDBMonitor JDBC Driver.
This step depends on the way you load the JDBC Driver
(1) if you write code to load the JDBC Driver,for example:
Class.forName(“com.microsoft.jdbc.sqlserver.SQLServerDriver”);
Connection cn = DriverManager.getConnection(……);
In this case,you must modify the “Class.forName” to load JDBMonitor JDBC Driver(“com.cownew.JDBMonitor.jdbc.DBDriver”) instead of the original database JDBC driver.
For example:
Class.forName(“com.cownew.JDBMonitor.jdbc.DBDriver”);
Connection cn = DriverManager.getConnection(……);
(2) if you specify the JDBC Driver class in config file,for example,datasource configfile or other file.
Please modify the original database JDBC driver name to “com.cownew.JDBMonitor.jdbc.DBDriver”
3 Make the JDBMonitor load the original database JDBC driver.
The principle of JDBMonitor is to intercept and capture the SQL statement sending to database JDBC driver,it logs the SQL statement,then redirects the SQL statement to the original JDBC Driver,so JDBMonitor must register the original JDBC Driver to DriverManager first.
The original JDBC Driver is defined at the “JdbcDrivers” segment of the config file.
<JdbcDrivers>
<JdbcDriver class=" com.mysql.jdbc.Driver"/>
</JdbcDrivers>
4 Appending the JDBMonitor information to the original JDBC connection string.
The only change you should do it to append” listenerconfig=<configfilepath>:url=” before the original JDBC connection string.
“<configfilepath>”is path of the confile file, file path below all support:
/com/jdbmonitor/config.xml
com/jdbmonitor/config.xml
c:/ jdbmonitor /config.xml
JDBMoinitor uses getClass().getResourceAsStream to load “/com/jdbmonitor/config.xml” and “com/jdbmonitor/config.xml” , and FileInputStream to load “c:/ jdbmonitor /config.xml”.
5 Specify the DBListener to use:
You can log the SQL execution in different ways,eg, to console,to file ,to remote client or others.
We have developed such DBListeners in common use: FileDBListener, ConsoleDBListener, SocketDBListener&#12289;SocketDBListener.You can also develop DBListeners on your demond.
The DBListener is defined at the “Listeners” segment of the config file:
<Listeners>
<!--ConsoleDBListener no arguments-->
<Listener class="com.cownew.JDBMonitor.listenerImpl.ConsoleDBListener" arg=""/>
<!--the arguments of FileDBListener is the file to log the SQL statement -->
<Listener class="com.cownew.JDBMonitor.listenerImpl.FileDBListener" arg="c:/aaa.txt"/>
<!--the arguments of SocketDBListener is the bound socket port of the listener server -->
<Listener class="com.cownew.JDBMonitor.listenerImpl.SocketDBListener" arg="9527"/>
</Listeners>
That’s all!Start your application.Yeah,SQL statements are logged,we can see them in console,in file,even in remote client monitor.
Examples
mvnforum Example:
You can get mvnforum from http://www.mvnForum.com. The version I use to demo is 1.0.
(1) Open webapp\WEB-INF\classes\ mvncore.xml,re-config it:
Before re-config:
<driver_class_name>com.mysql.jdbc.Driver</driver_class_name>
<database_url>listenerconfig=c:/log/jdbmonitor/config.xml:url= jdbc:mysql://localhost/mvnforum?useUnicode=true&amp;characterEncoding=utf-8</database_url>
After re-config:
<driver_class_name>com.cownew.JDBMonitor.jdbc.DBDriver</driver_class_name>
<database_url>jdbc:mysql://localhost/mvnforum?useUnicode=true&amp;characterEncoding=utf-8</database_url>
(2) create c:/log/jdbmonitor/config.xml.I only wanna log the SQL statement to text file,so I config it as below:
<config>
<Listeners>
<!--the arguments of FileDBListener is the file to log the SQL statement -->
<Listener class="com.cownew.JDBMonitor.listenerImpl.FileDBListener" arg="c:/log.txt"/>
</Listeners>
<JdbcDrivers>
<JdbcDriver class="com.mysql.jdbc.Driver"/>
</JdbcDrivers>
</config>
(3) Drop jdbmonitor.jar to webapp\WEB-INF\lib
(4) Done!
Jive example:
You can get Jive from http://www.jivesoftware.com. The version I use to demo is Jive 2.0 beta.
(1) Open http://localhost:8080/jive/admin/
Fill “jdbc” with:com.cownew.JDBMonitor.jdbc.DBDriver
Fill “server” with : c:/log/jdbmonitor/config.xml:url=jdbc:mysql://locahost/jive
(3) Drop jdbmonitor.jar to WEB-INF\lib
(4) create c:/log/jdbmonitor/config.xml as mvnforum Example.
(4) Done!
Code exmple:
Though it’s not recommended,some application write the JDBC driver class name and JDBC connection string in code.
For example:
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection conn = null;
PreparedStatement ps = null;
try
conn = DriverManager
.getConnection("jdbc:odbc:MQIS");
for (int i = 0; i < 1000; i++)
ps = conn.prepareStatement("update T_Material set fid=fid");
ps.execute();
ps.close();
} finally
(1) Let’s recode a little:
Class.forName("com.cownew.JDBMonitor.jdbc.DBDriver");
Connection conn = null;
PreparedStatement ps = null;
try
conn = DriverManager.getConnection("listenerconfig= c:/log/jdbmonitor/config.xml:url=jdbc:odbc:MQIS");
for (int i = 0; i < 1000; i++)
ps = conn.prepareStatement("update T_Material set fid=fid");
ps.execute();
ps.close();
} finally
(2) create c:/log/jdbmonitor/config.xml.I wanna log the SQL statement to text file and log to them to console so that it can help me to debug,so I config it as below:
<config>
<Listeners>
<!--the arguments of FileDBListener is the file to log the SQL statement -->
<Listener class="com.cownew.JDBMonitor.listenerImpl.FileDBListener" arg="c:/log.txt"/>
<!--ConsoleDBListener no arguments-->
<Listener class="com.cownew.JDBMonitor.listenerImpl.ConsoleDBListener" arg=""/>
</Listeners>
<JdbcDrivers>
<JdbcDriver class="com.mysql.jdbc.Driver"/>
</JdbcDrivers>
</config>
(3) Drop j dbmonitor.jar to classpath
(4) Done!
Listener
We have developed such DBListeners in common use: ConsoleDBListener, FileDBListener,SocketDBListener,DataBaseDBListener.
1&#12289;ConsoleDBListener
ConsoleDBListener will write SQL Statement to Console.
This Listener is easy to config:
<Listener class="com.cownew.JDBMonitor.listenerImpl.ConsoleDBListener" arg=""/>
2&#12289;FileDBListener
FileDBListener will write SQL Statement to textfile:
Config as below:
<Listener class="com.cownew.JDBMonitor.listenerImpl.FileDBListener" arg="c:/aaa.txt"/>
arg="c:/aaa.txt" means the SQL statement will be writen into c:/aaa.txt.
3&#12289;SocketDBListener
SocketDBListener works as a socket server,client can receive the SQL statement after connected to the socket server.
Config as below:
<Listener class="com.cownew.JDBMonitor.listenerImpl.SocketDBListener" arg="9527"/>
arg="9527" means the SocketDBListener will listen at port 9527.
Now,we have developed two kinds of socket client:SocketConsoleClient and SocketSwingClient.
SocketConsoleClient works in console:
SocketSwingClient works in Swing GUI:
You can execute "java -classpath jdbmonitor.jar com.cownew.JDBMonitor.listenerImpl.sckListenerClient.SocketConsoleClient" to start SocketConsoleClient,and "java -classpath jdbmonitor.jar com.cownew.JDBMonitor.listenerImpl.sckListenerClient.SocketSwingClient" to start SocketSwingClient.
If you wanna write client listener on your demand,please reference com.cownew.JDBMonitor.listenerImpl.sckListenerClient.ListenerClient and com.cownew.JDBMonitor.listenerImpl.sckListenerClient.IDBSocketClientListener.
4&#12289;DataBaseDBListener
DataBaseDBListener will record SQL statement to Database.
Config as below:
<Listener class="com.cownew.JDBMonitor.listenerImpl.DataBaseDBListener"
arg="dburl=jdbc:odbc:MQIS;user=;password=;logtable=T_Log_SQLLog"/>
"dburl=jdbc:odbc:MQIS;user=;password=;" declares the JDBC connection string of the target database;"logtable=T_Log_SQLLog" declares which table to record the SQL statement,default tablename is T_Log_SQLLog.
If the JDBC driver class is different from the database to be monitored,please add the JDBC driver class in the "JdbcDrivers" tags of the config file.
for example:
<config>
<Active>true</Active>
<Listeners>
<Listener class="com.cownew.JDBMonitor.listenerImpl.ConsoleDBListener" arg=""/>
<Listener class="com.cownew.JDBMonitor.listenerImpl.DataBaseDBListener"
arg="dburl=jdbc:odbc:MQIS;user=;password=;logtable=T_Log_SQLLog"/>
</Listeners>
<JdbcDrivers>
<JdbcDriver class="com.microsoft.jdbc.sqlserver.SQLServerDriver"/>
<JdbcDriver class="sun.jdbc.odbc.JdbcOdbcDriver"/>
</JdbcDrivers>
</config>
The schema of "T_Log_SQLLog" is:
The "create table" SQL statement can be found at:com/cownew/JDBMonitor/listenerImpl/dataBaseListener,(db2.sql,mssqlserver.sql,oracle.sql)
DataBaseDBListener is database independent, You can record the SQL statement to any relation database.

No one here would know why Apple has not chosen to implement such a feature nor how difficult it may be to do so. Submit your feedback directly to Apple using the appropriate link on the Feedback page:
http://www.apple.com/feedback
If they're people you call, why wouldn't you want them as contacts? You can link related people (e.g. spouses, children, etc.).

Similar Messages

  • Does any iPhone have the ability to talk to text off-line?

    Would like to know if any iPhones have the ability to talk to text off-line?

    Speech to text as it currently works takes a powerful computer and a large database. It will awhile before phones are that powerful and have that much storage. Based on the trends toward cloud storage and constant connectivity, I don't see it as something companies will be interested in developing.

  • I have a domain with 2 DCs (both virtual machines) in different Hyper-V Hosts. Dose this case make any influence on the time sync?

    As title,
    I have a domain with 2 DCs (both virtual machines) in 2 different Hyper-V Hosts, and one of the perform as a PDC Emulator.
    Dose this case make any influence on the time sync?
    i.e. Both of the VMs sync with Hyper-V host, instead the other host should sync with the PDC Emulator?
    I run w32tm command and get the following result:
    C:\Users\Administrator.DOMAIN8>w32tm /query /computer:dc8.domain8.local /source
    VM IC Time Synchronization Provider
    C:\Users\Administrator.DOMAIN8>w32tm /query /computer:hpvzh05.domain8.local /source
    VM IC Time Synchronization Provider
    HPVZH05.domain8.local works as PDC server.
    How can I make DC8 sync with HPVZH05?

    Awesome!
    It looks like your PDC is successfully pulling time from an external source.  DC8 is not longer pulling from Hyper-V so that is good.
    When you set a client to pull from a source ( and in this case DC8 is pulling from NT5DS, which tells it to pull from the PDC), and it CAN'T pull from that source, it will default to Local CMOS Clock.  This is likely an easy fix.
    First, check connectivity:
    - Method one- Download Portqry and run this command: portqry -n HPVZH05 -p both -e 123 and see if the results say listening, or
    - Method two- Run this command from DC8: w32tm /stripchart /computer:HPVZH05
    If you get any kind of error using method two, it's a connectivity issue.  (Maybe you have a firewall that's blocking access?)
    The other cause of this, and probably more likely in your case, is that your PDC isn't properly advertising as a reliable time source, so DC8 isn't 'allowed' to pull from it.
    Try running this command on your PDC: w32tm /config /reliable:yes
    Then go restart time on your PDC, THEN DC8 again.  (net stop w32time & net start w32time)
    Here's an article you can reference: http://technet.microsoft.com/en-us/library/cc794937(v=WS.10).aspx
    - As always, if you find my posts to be helpful, please mark it appropriately.  Thank you :)
    Chris Ream

  • I have just updated my MBP to Maverick OS. I am unable to shutdown or log off. When i press the shutdown button, a black screen appears which goes off on pressing any key. The shutdown or log off dialog does not appear. Your kind help is much appreciated.

    I have just updated my MBP 17 / retina display to Maverick OS. I am unable to shutdown or log off. When i press the shutdown button, a black screen appears which goes off on pressing any key. The shutdown or log off dialog does not appear. Your kind help is much appreciated.

    The button response has changed. 
    Short press : sleep
    Medium press (2-3 sec) : restart, shutdown, sleep dialog
    Long press : force shutdown. (Same as before)

  • HT1329 My hard drive crashed.  Is there any way to get my songs onto my new computer without re-loading all of the CDs.  I did not make any purchases through the itunes store.  Have never used icloud.  The songs are on my ipod.

    My hard drive crashed.  Is there any way to get my songs onto my new computer without re-loading all of the CDs.  I did not make any purchases through the itunes store.  Have never used icloud.  The songs are on my ipod.

    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • Does any one know if the iPhone camera one day will have the ability to date stamp photos taken with the iPhone

    Does any one know if the iPhone camera one day will have the ability to date stamp photos taken with the iPhone

    No one but Apple knows what will come in the future until they announce it. We are forbidden from speculating about it on these forums.

  • Does Adobe Reader for iOS have the ability to open inbedded links to additional PDF docs?  If not, then what would be the best way to use these already created PDF's?

    Does Adobe Reader for iOS have the ability to open inbedded links created with Acrobat Standard to additional PDF docs?  If not, then what would be the best way to use these already created PDF's on an I Pad?

    driddy61,
    As of June 2014, none of the Adobe Reader mobile products support the hyperlink action for opening a separate PDF document.
    Adobe Reader for iOS
    Adobe Reader for Android
    Adobe Reader Touch for Windows 8
    In addition, the Reader mobile products do not open multiple windows/documents simultaneously, which would make the navigation between PDF documents nearly impossible. (Once a hyperlink takes you to a different PDF document, you have no way to go back to the original PDF document.)
    The only Adobe Reader product that fulfills your department's requirements is Adobe Reader XI (mostly for Windows/Mac desktop/laptop computers).  Acrobat Pro and Standard are paid products.
    Because you are in search of a less expensive device for your department, you could get a Windows tablet instead of a Windows desktop/laptop computer. Microsoft Surface Pro (that you've mentioned in your previous reply) is just one example.  You can also find other less expensive Windows tablets.
    Tablets
    However, please keep in mind that there are two different types of Windows tablets running two different operating systems.
    (a) A Windows tablet with an Intel-based processor running Windows 8.1 Pro
    Example: Surface Pro 3
    You can install and run traditional desktop apps (e.g. Adobe Reader XI) and new Windows Store apps ("Modern" or "Metro-style" apps).
    (b) A Windows tablet with an ARM-based processor running Windows RT 8.1
    Example: Surface 2
    You can only install and run Windows Store apps (e.g. Adobe Reader Touch) but not traditional desktop apps like Adobe Reader XI.
    In general, type (b) tablets are more affordable than type (a) tablets.  However, if you want to run Adobe Reader XI, you do need to check the technical specification of each tablet and make sure the following conditions are met.
    Processor: Intel
    Operating system:  Windows 8/8.1 or Windows 8/8.1 Pro, not RT
    Hope this helps you choose the right device for your department.  Please let us know if you have any questions about system requirements or supported features in the Adobe Reader products.

  • Can OracleGridControl monitor databases have the same service_name?

    I installed a oracle Grid control on a linux server ,and it can run correctly.and I installed the agents on all database nodes,they work correctly too!
    Now my problem is all the nodes are monitored by the server must have the same oracle serviece_name.
    So in the browser , my grid control can find all the nodes,but only find one database.
    [b]I wonder if it's because the all database have the same service_names?
    Is there any method to solve the problems?Can I change the name in gridControl!

    Yes - you may find that they went to the "duplicates" area (see the setup->management and repository tab). What you need to do is go into the agent page, rediscover the service, then configure it and change the service name - perhaps by adding the host name on to it. Similar thing happens when all of your listeners are called LISTENER. If you go the the various hosts and in the targets.xml file you will see the DISPLAY_NAME - this is what you need to change to make them different.

  • How do I lock the location of a table and still have the ability to edit it?

    I actually have two questions.
    1. I have a table that I made a master object for the purpose of having it on two pages. Becuase it is a master object, I am unable to input data into it. I'm fine with this because it's important this table remain exactly as it is. So I made another table with the same dimensions and put it on top, and turned off all the lines so you can only see the underlying table, and any data inputted looks as if it belongs to the master object. However, I spent an embarassingly long time trying to get the second, top table in position and I don't want it to move. Is there a way to lock it's location and still have the ability to input data?
    2. I would like to copy and paste the above-mentioned second table. However, when I do so, the dimensions change. Some of the rows line up with the master-object underlying table, but some are way off. I have no idea why this would be. I went into the settings of both and made sure their measurements were the same. Rows, columns, x, y; everything. As a temporary solution, I made the top-table a master-object, which put it on both pages and then I 'unmade' it a master-object.
    Any ideas? Thanks for your time!

    This may not be the most efficient method, but drag it to your desk top.  Delete the image in iPhoto, re-import the image and merge it into the event where you want it.
    You may also consider posting this query on the iPhoto forum.  You will have a wider audience and one that is oriented towards this application.
    Ciao.

  • Does the hp psc 1210v all-in-one have the ability to print back to front?

    My hp psc 1210v all-in-one is still working and it is driving me crazy that this printer doesn't have the ability to print back to front. I am also upset that there is no software to print double sided like with the newer hp printers.
    Is it just me or would this printer be perfect if it had these features?
    This question was solved.
    View Solution.

    Printing back to front is actually a feature of the software you are using.  You can do this in Word on your printer now.  This link will go into more detail: "Printing Back to Front."
    Lastly, two-sided printing is an accessory part that you put on the back of the printer to make it turn (called a duplexer). Once again, not a feature that can be added to a driver, or this printer for that matter.  Sorry to be the bearer of bad news but on the plus side, at the HP Parts Store, there are enough parts for this printer, you could keep it running for decades.  
    I am glad you like it.
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • I am unable to make any purchases in the App Store. PLEASE HELPPPP!

    I am unable to make any purchases in the App Store. I have $15 in the account but I still can't buy any games. It only lets me purchase free games. It says "this Apple ID is now locked and unable to make any purchases"

    You are in the same country as you have on your iTunes account, and you haven't been trying to use another country's store ?
    Try contacting iTunes Support (these are user-to-user forums) and see if they can/will unlock it : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Can't make any purchase from the AppStore even if it is free ,

    Hey There
    Can't make any purchase from the AppStore even if it is free ,It always tells me error has occurred. This happens since I upgraded to Mavericks,, Could you please help

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • I'm trying to extend the range of an Airport Extreme 802.11g by adding an Airport Express 802.11n. I set the Express up to join the existing network, but it does not make any difference in the range of the network. What's wrong?

    I'm trying to extend the range of an Airport Extreme 802.11g by adding an Airport Express 802.11n. I set the Express up to join the existing network, but it does not make any difference in the range of the network. What's wrong?

    Let me see if I can help you with the basic WDS configuration steps:
    Note: To help facilitate the setup, temporarily connect the AXn directly to the AEBS LAN port using an Ethernet cable. Once the setup is complete, you can move the AXn to the desired location. For all configuration steps you will be using the AirPort Utility. Before starting, be sure to jot down the AppleIDs for both base stations.
    802.11g AirPort Extreme Base Station (AEBS) Configuration
    AirPort Utility > Select the AEBS > Manual Setup > Wireless tab
    Wireless Mode: Participate in a WDS network
    Manual Setup > WDS tab
    WDS Mode: WDS main
    Allow wireless clients (checked)
    WDS Remotes: <enter the AppleID for the AXn here>
    Click on Update and allow the base station to restart.
    802.11n AirPort Express Base Station (AXn) Configuration
    AirPort Utility > Select the AXn > Manual Setup > Wireless tab
    Wireless Mode: Participate in a WDS network (Note: You may have to hold down the Option (Mac) or Control (PC) key to see this option in the list.)
    Manual Setup > WDS tab
    WDS Mode: WDS remote
    Allow wireless clients (checked)
    WDS Main: <enter the AppleID for the AEBS here>
    Click on Update and allow the base station to restart.

  • Purchase can be made from the app store yet I couldn't make any purchase from the game app (candy crush) directly, please kindly your help for further direction

    Purchase can be made from the app store yet I couldn't make any purchase from the game app (candy crush) directly, please kindly your help for further direction

    Can I add my existing, licensed apps to my list of 'Purchases' on the Mac App Store so I don't have to buy them twice?
    No. Only apps purchased from the App Store can be re downloaded for free including updates.

  • Is there anyway to have the ability to edit and add contacts without syncing to the cloud?

    My husband and I share an account.  He has a very large number of contacts that I do not need and don't want on my phone.  I turned off syncing my contacts to the cloud for this reason but now do not seem to have the ability to add contacts or edit my existing contacts.  Any suggestions? 

    It seems like you need to set up your own iCloud account.  Just set one up different from his.  Create a new one if you don't have another already.

Maybe you are looking for

  • Problem with Month in text

    Hi experts, I have a columns with the months : 1,2,3,4 ... I need these month in names and that's why the formula of the column is : MonthName ({Comando.MES_CIERRE}, true ) then the column show: Jan Feb Mar ... Then I create a new row, but when I cal

  • Two Alerts for one scenario: Application Error and No mapping found

    Hello, we have a synchronous scenario here embedded in an BPM. The last send step step is sync. The receiver is a web service (SOAP adapter) which sends back a response. Problem with the response from the service: First test: error entries in SXMB_MO

  • Godaddy and Forwarding to .Mac

    Can someone give me specific directions for forwarding a domain name at godaddy to my newly created iweb site on .mac. I've seen references to masking versus unmasking, I'm a little confused about that. I've also read previous posts about some proble

  • How to view Financial Year details in Scorecard

    Hello all , We are using SSM 7.5 SP 04. We have built a scorecard with monthly KPIs. The financial year for my client is April to March. So , he wants to see the monthly data and the FY data in the scorecard. But , the timeperiod drop down box shows

  • ITunes 9 and 8 won't work - just reinstalled Windows XP

    Hi all, I feel I'm going mad here. All night I was reinstalling Windows XP on my sister's Dell Inspiron 1520. As far as I know, I've put on all the correct drivers and bios in the right order. This morning, I checked everything was working. Lo' and B