Websphere 3.5 + MSSQL Server 2000 performance

Hi,
I am developing a web application with WAS 3.5 and MS-SQL Server 2000. My application contains Entity and Stateless beans. When a single user is running the application I see that a bean method called from JSP takes about 4-5 seconds for retreiving data. Where as the same method takes 25-30 seconds when 10 concurrent users are running the same JSP. Why is the time difference so much. Where is the system lagging, at the Websphere level or the database level. Are there some settings to be done at the database level. I think the database is serving the request in queue, thus delaying the data retreival. How can this be removed. Let me add that once I bring the data and keep it in the session, then the subsequent call to the same JSP takes 4-5 seconds for 10 concurrent users. Now there is no database access, the data is taken from the session.
In a large web application we cant keep lot of session variables. How can we optimise the database server.

I'm assuming you're using database connection pooling as implemented in WAS. When you define a DataSource resource via the WAS console the default minimum connection pool size is one and the max is ten. You may want to bump up both numbers.

Similar Messages

  • Hope to convert the MSSQL server 2000 to Oracle 11G

    Hi All
    I've gone through the post
    +"Microsoft SQL Offline Migration - How to ?"+
    Microsoft SQL Offline Migration - How to ?
    and try to convert the MSSQL server 2000 to Oracle 11G. but there are following issue :
    1) Cannot create a row of size 8094 which is greater than the allowable maximum of 8096.? Even after this error it capture the SQL server model.
    2) Then I try to convert the captured model by "Right Click" convert option. It opens 2 tab's (Migration Wizard step6 of 9) "DataType Mapping", "Object Naming" Object Naming is empty tab. How can i fix the naming rule while migrating ?
    3) This will convert the capture model successfully in Oracle 11g but The naming of object like procedure, constraints ,views, indexes etc. Still exceed 30 character rule. I mean the object names are more the 30 character length.
    There should be way to fix the naming standards while migrating or converting the model ?
    Please advice if any
    Thanks

    Hi All
    I've gone through the post
    +"Microsoft SQL Offline Migration - How to ?"+
    Microsoft SQL Offline Migration - How to ?
    and try to convert the MSSQL server 2000 to Oracle 11G. but there are following issue :
    1) Cannot create a row of size 8094 which is greater than the allowable maximum of 8096.? Even after this error it capture the SQL server model.
    2) Then I try to convert the captured model by "Right Click" convert option. It opens 2 tab's (Migration Wizard step6 of 9) "DataType Mapping", "Object Naming" Object Naming is empty tab. How can i fix the naming rule while migrating ?
    3) This will convert the capture model successfully in Oracle 11g but The naming of object like procedure, constraints ,views, indexes etc. Still exceed 30 character rule. I mean the object names are more the 30 character length.
    There should be way to fix the naming standards while migrating or converting the model ?
    Please advice if any
    Thanks

  • How can I store Chinese Character in MSSQL Server 2000 from JSP?

    Dear all,
    I've got a problem with storing Chinese Characters in MSSQL table. The list below is my setting of my project:
    HTML/JSP -- "charset=big5" (in both "meta" and "import page")
    MSSQL server -- The field of storing Chinese Characters are in nvarchar format
    But the Chinese Characters are converted into some unknown codes and what I could do to make sure the transaction can go smoothly? Can anyone give me a hand on this issue??
    Van

    the key point is yousing the connection string in the following way ;-) it works for me in Hebrew.
    Class.forName("org.gjt.mm.mysql.Driver");
    //"?useUnicode=true&characterEncoding=UTF8
    Connection con = DriverManager.getConnection ("jdbc:mysql://localhost:3306/database?useUnicode=true&characterEncoding=UTF8","user_name","password");
    SAMPLE PAGE
    <%@ page contentType="text/html; charset=UTF-8" %>
    <%
    // response.setCharacterEncoding("UTF8");
    // request.setCharacterEncoding("UTF8");
    %>
    <%@taglib prefix="bean" uri="/WEB-INF/struts-bean.tld"%>
    <%@ page import="java.sql.*,
    java.util.Properties,
    java.util.ResourceBundle,
    java.util.Locale,
    java.io.*"%>
    <head>
    <META HTTP-EQUIV="CONTENT-TYPE" CONTENT="TEXT/HTML; CHARSET=UTF-8">
    <LINK REL="stylesheet" TYPE="text/css" HREF="/portal/style/text.css">
    </head>
    <body dir="rtl">
    <span class="redText">
    &#1513;&#1502;&#1493;&#1514;:
    </span> <br>
    <%
    if ("true".equals(request.getParameter("insert"))){
    String text = request.getParameter("text");
    if(!"".equals(text))
    Class.forName("org.gjt.mm.mysql.Driver");
    Connection con2 = DriverManager.getConnection ("jdbc:mysql://localhost:3306/zoozoo?useUnicode=true&characterEncoding=UTF8","moshe_beeri","navctrh");
    Statement stmt2 = con2.createStatement();
    //text="&#1513;&#1500;&#1493;&#1501;";
    String dada="insert into testheb (name) values ('" + text + "')";
    // String ins = new String(dada.getBytes("iso-8859-1"),"windows-1255");
    stmt2.executeUpdate(dada);
    Class.forName("org.gjt.mm.mysql.Driver"); //"?useUnicode=true&characterEncoding=UTF8
    Connection con = DriverManager.getConnection ("jdbc:mysql://localhost:3306/database?useUnicode=true&characterEncoding=UTF8","user_name","password");
    Statement stmt = con.createStatement();
    ResultSet rs = stmt.executeQuery("select * from testheb"); // create a table for testings with id,name
    while (rs.next()){
    String text = rs.getString("name");
    %>
    <%=text%> <br>
    <%
    %>
    <hr>
    <form method="post" action="tespmysql.jsp">
    <input type="hidden" name="insert" value="true">
    <input type="text" name="text">
    <input type="submit">
    </form>
    </body>

  • Setting up connection pool in MSSQL SERVER 2000

    hi,
    i m having too much trouble in setting up connection pool in TOMCAT 5.0.25 for MS SQL SERVER 2000...
    ......so plz guide me how to do that...
    TIA
    bhups

    i m having too much trouble in setting up connection
    pool in TOMCAT 5.0.25 for MS SQL SERVER 2000...Never done it for SQL Server, but setting up a connection pool in tomcat is basically the same no matter what DB you're using:
    http://jakarta.apache.org/tomcat/tomcat-5.0-doc/jndi-datasource-examples-howto.html
    The two files you're interested in are server.xml and web.xml. You just need to look at the MYSQL and Oracle examples and "tweak" it ...

  • SQL Developer 1.5 using MSSQL server 2003

    Hi,
    I just download SQL Developer 1.5 to migrate from MSSQL to Oracle.
    I download and install too jtds1.2.2.jar
    Every time i try to connect my SQLSERVER i get one message " Connect connect to Microsoft SQL Server ..."
    I word on Windows 2003 Server with MSSQL Server 2000 and Oracle 9.2
    Can somebody help me ?

    Can you ping the server, by either hostname or ip address?
    If you can't then you must have the wrong name/address or there are network connectivity issues.
    Can you connect to the SQLServer using sqlserver tools from your PC??
    If not, then perhaps the SQLServer is not configured to accept TCP connections. By default it isn't and only uses named pipes.
    Or perhaps it is not using the default port.
    If you can do the above, the next step is to investigate problems within sqldeveloper.

  • Configure MS SQL Server 2000 DataSource in Sun Java Systema App Server

    How can I configure Sun Java Systema App Server 8 to use a DataSource of MSSQL Server 2000?

    This has been covered in this forum multiple times. It is also documented in the SJSAS developers guide jdbc chapter. If you still have questions, please post, but the info has previously been discussed here and recently

  • Use mssql server in place of hsqldb

    Hi,
    If this is wrong forum then pl tellme.
    I am posting my problem.
    I used hsqldb server(default one,no need to install any server).Now I want to use mssql server 2000.
    I am posting for your convienience.
    Pl. look ::
    hibernate.cfg.xml
    This is one when I used hsqldb server.
    <?xml version='1.0' encoding='utf-8'?>
    <!DOCTYPE hibernate-configuration PUBLIC
            "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
            "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
    <hibernate-configuration>
        <session-factory>
            <!-- Database connection settings -->
            <property name="connection.driver_class">org.hsqldb.jdbcDriver</property>
            <property name="connection.url">jdbc:hsqldb:hsql://localhost</property>
            <property name="connection.username">sa</property>
            <property name="connection.password"></property>
            <!-- JDBC connection pool (use the built-in) -->
            <property name="connection.pool_size">1</property>
            <!-- SQL dialect -->
            <property name="dialect">org.hibernate.dialect.HSQLDialect</property>
            <!-- Enable Hibernate's automatic session context management -->
            <property name="current_session_context_class">thread</property>
            <!-- Disable the second-level cache  -->
            <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
            <!-- Echo all executed SQL to stdout -->
            <property name="show_sql">true</property>
            <!-- Drop and re-create the database schema on startup -->
            <property name="hbm2ddl.auto">create</property>
        </session-factory>
    </hibernate-configuration>hibernate.cfg.xml
    This is one I want with mssql server 2000
    I try with following changes
    <?xml version='1.0' encoding='utf-8'?>
    <!DOCTYPE hibernate-configuration PUBLIC
            "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
            "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
    <hibernate-configuration>
        <session-factory>
            <property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
            <property name="dialect">org.hibernate.Dialect.SqlDialect</property>
            <property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property>
            <property name="connection.connection_string">Server=(local);Initial Catalog=dbname;User Id=sa;Password=</property>
        </session-factory>
    </hibernate-configuration>Whatever i found on command line screen
    D:\myht>ant hbm2ddl
    Buildfile: build.xml
    hbm2ddl:
    [hibernatetool] Executing Hibernate Tool with a Standard Configuration
    [hibernatetool] 1. task: hbm2ddl (Generates database schema)
    [hibernatetool] log4j:WARN No appenders could be found for logger (org.hibernate
    .cfg.Environment).
    [hibernatetool] log4j:WARN Please initialize the log4j system properly.
    [hibernatetool] An exception occurred while running exporter #2:hbm2ddl (Generat
    es database schema)
    [hibernatetool] To get the full stack trace run ant with -verbose
    [hibernatetool] org.hibernate.HibernateException: Dialect class not found: org.h
    ibernate.Dialect.SqlDialect
    BUILD FAILED
    D:\myht\build.xml:81: org.hibernate.HibernateException: Dialect class not found:
    org.hibernate.Dialect.SqlDialect
    Total time: 1 second
    D:\myht>Please give me your suggestion sothat I can use mssql 2000 server.
    Thanks
    Regards
    -Shobhit

    oops!!!!!!!!!!!!!!!
    I got a very little mistake I don't change my config. file to use mysql.
    -S.Singh

  • Problem creating connnection pool - SQL Server 2000

    Server - Weblogic 6.1
    I am trying to create a connection pool for MSSQL Server 2000.
    Using Administration Concole I entered the following information:
    Name : MSSQLCP
    URL: jdbc:weblogic:mssqlserver4
    Driver ClassName: weblogic.jdbc.mssqlsvr4.Driver
    Properties: user=sa
    db=pubs
    password=
    No password.
    I targeted my server.
    I created a data Source for this pool and targeted my serevr.
    When I start my server I get the following error:
    <Error> <JDBC> <Cannot startup connection pool "MSSQLCP" Cannot load driver class:
    weblogic.jdbc.mssqlsvr4.Driver>
    <Error> <JDBC> <Error during Data Source creation: weblogic.common.ResourceException:
    DataSource(MSSQLCON) can't be created with non-existent Pool (connection or multi)
    (MSSQLCP)>
    Am I missing something? What I am doing wrong?
    Thanks in advance,
    Igor

    Thank you. I suspected something like this.
    "Sree Bodapati" <[email protected]> wrote:
    Hi Igor,
    your driver class name is incorrect,
    weblogic.jdbc.mssqlsvr4.Driver
    try replacing it with, weblogic.jdbc.mssqlserver4.Driver and make sure
    you
    associate a target to the connection pool.
    hth
    sree
    "Igor Kravzov" <[email protected]> wrote in message
    news:3c10c8e9$[email protected]..
    Server - Weblogic 6.1
    I am trying to create a connection pool for MSSQL Server 2000.
    Using Administration Concole I entered the following information:
    Name : MSSQLCP
    URL: jdbc:weblogic:mssqlserver4
    Driver ClassName: weblogic.jdbc.mssqlsvr4.Driver
    Properties: user=sa
    db=pubs
    password=
    No password.
    I targeted my server.
    I created a data Source for this pool and targeted my serevr.
    When I start my server I get the following error:
    <Error> <JDBC> <Cannot startup connection pool "MSSQLCP" Cannot load
    driver
    class:
    weblogic.jdbc.mssqlsvr4.Driver>
    <Error> <JDBC> <Error during Data Source creation:
    weblogic.common.ResourceException:
    DataSource(MSSQLCON) can't be created with non-existent Pool (connection
    or
    multi)
    (MSSQLCP)>
    Am I missing something? What I am doing wrong?
    Thanks in advance,
    Igor

  • SQL Server 2000 std Report Performance Issue

    Dear All,
    I have a VB based desktop application with back end MS SQL server 2000 database with server machine ibmx5650 with specs intel xeon 2.7GHz (24 CPU's) & 24GB RAM.
    There are two things i need help:
    Recently we have upgrade the SQL server from 2000 personal edition to the 2000 standard edition. There comes a problem with one of the Report in the application. The report took almost 30 mins previously in SQL 2000 personal edition.But after the upgrade
     to Standard edition we are unable to view report before 3 hours even sometimes it doesn't appear after several hours.
    Secondly for brief testing i have installed the personal edition on a simple PC rather then a server PC specs are corei5 & 4 GB of RAM. The same report is generated in only 15 mins from the application with this desktop machine as DB server.
    Please help me out i have gone through all SQL Server & system performance log of my server machine everything is normal but the report is taking too long & i can only generate that report from personal edition.
    Is there the difference due the higher corei5 processor in desktop machine or there is any other issue behind this.
    Your prompt response is highly appreciated.
    Regards,
    Rashid Ali

    Hello,
    SQL Server 2000 is not support since 2013. Please upgrade to SQL Server 2012 to get better performance and support.
    Thanks for your understanding and support.
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • SQL Server 2000 with IBM websphere 4.0

    Hi,
    I need to migrate existing Oracle DB to SQL server 2000.
    Let me know how does SQL server 2000 connect with and talk to IBM websphere 4.0.
    If you can also send me a sample architecture diagram.
    Thanks
    Alpana

    Hello,
    It seems you need to install i-net OPTA in IBM WebSphere 4.o to be able to connect to a SQL Server
    2000 instance. Please read the following article for more information:
    https://www.inetsoftware.de/products/jdbc-driver/ms-sql/configurations/websphere4
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Sql server 2000 stored procs vs. prepared statements performance

    Hi
    I have observed that using stored procedure in sql server 2000 is much much faster than using a prepared statements. I had worked with oracle before and did not notice this much difference. I would like to use prepared statements or regular sql (for dynamic sql creation) in my apps. Does anyone have any suggestions ?.
    thanks

    Hi
    FYI
    I figured out the slowness problem in using prepared statement (db - sql server 2000)was due to the Microsoft typ4 4 jdbc driver. When I used the jdbc driver from atinav, my prepared statements worked as fast as stored procs.

  • Query Locks Table in SQL Server 2000!!

    Hi all!
    I am facing a strange problem. I am using MS SQL Server 2000.
    I have a JDBC program.It executes a query on a table (STUDENT) and fetches some record from it.
    The query gets executed fine for the first time but when the SELECT query is executed on the same table (i.e. STUDENT) from some other block of code within the same program the program hangs at the location where resultset is pointed to the first record i.e. RS.next();
    When I try to execute the SELECT query on the same table (i.e. STUDENT) from a query tool when the program is running it also gets hanged!!!
    It seems that after running the query for the first time on the STUDENT table from the next time its getting hanged....i believe the Table gets locked for some reason!!
    Is that normal with SQL Server 2000.....The same code works fine with other database!
    Please suggest...wht has to b done to gt it fixed!
    Thankz a loadz bforehand!
    Arun

    By default (transaction isolation level TRANSACTION_READ_COMMITTED ), SQL Server applies a shared read lock when you do a SELECT. This is should not prevent other selects on the same row / page but it will prevent updates / deletes.
    I found a link that explains SQL Server locking: http://databasejournal.com/features/mssql/article.php/3289661

  • Password Change on MSSQL Server, now no Connection to Workspace

    Hello,
    our IT-Department changed the password to login to the MSSQL Server. Now i cant login to Workspace or Financial Reporting. The Error message says the the GSM Service on Port 1800 cant be reached. The Services are marked as started.
    I have already used the Configuration Utility and the Service Configurator, there is a tab called database where you can change the login credentials. But i still cant login.
    There is a note below which says:
    Note: Database properties are tied to some startup scripts and configuration files. If you make any changes on these properties you should change those related files per hand.
    Which Files are meant ?
    Where else is the password stored ?
    What else can i do to check if the GSM Service is running ?
    Thx for your help
    I forgot to say we use an 9.2 enviroment on win2k3 servers.
    Edited by: Kevin Kraft on 01.10.2009 08:39

    Hello,
    i talked to support an they gave me the advise to restore the old password to get services running and then do the following steps:
    Changing the Services Repository Database Password
    When you change the password that the services use to access the repository database, the order
    of steps is critical. Carefully read all instructions before performing them.
    Caution!
    Make sure to change the password in Workspace before changing it in the database. If you
    perform the steps in the wrong order, you may lose the ability to run Workspace.
    ➤ To change the repository database password:
    1 From RSC, select Name Service, Repository Service, or Event Service.
    2 Click Show item properties, and select the Storage tab.
    3 Change the password and click OK.
    4 Repeat step 1 through step 3 for all Name Services, Repository Services, and Event Services with the same
    database account, making certain to enter the same password for each one.
    If these services use different database accounts, perform this step only for those that use the
    account whose password you are changing.
    5 Close RSC.
    6 In LSC, click Show host properties, and select the Database tab.
    7 Change the password and click OK.
    This password property (like the other properties on the Database tab) applies to all LSC services
    on the local host, all of which use one database account.
    For more information about LSC, see Chapter 8, “Configuring LSC Services.”
    8 Repeat step 6 and step 7 on every host that contains LSC services, making certain to enter the password
    the same way each time.
    9 If you are using the same database for row-level security, change the password for row-level security from
    the Administer module.
    10 Stop the Reporting and Analysis services.
    11 Change the password in the database, making certain it matches the password entered for Reporting and
    Analysis services.
    12 Restart the services.
    This procedure can also be found in the file hsadmin.pdf which is the Workspace Administration Guide.
    My Problem is the IT-Department cant restore the old password, so i fear i have to reinstall the services :(.
    thx for your help
    Kevin

  • Executing interface for a SQL Server 2000 target

    Hi All,
    I am trying doing some initial experimentation with ODI, in executing its interface in compiling a SQL Server 2000 target from the same source.
    I designed an interface with Source and target having only one column, inserted some sample data for the source data store and left the target empty. After reversing the source and target data models, created an interface and inserted source and target datastores and active mapped the existing column. In the flow tab, I am using LKM MSSQL to MSSQL(Linked Servers) and IKM MSSQL Incremental Update and rectified Flow Control to 'No' as I dont have any keys in my structure. I am using CKM SQL, though no necessity of it, and also tried with LKM MSSQL to MSSQL(BCP), but could not correct the error when executing this interface.
    It is not indicating any errors in diagram. In the Operator this is what is the message:
    1038 : S0003 : com.microsoft.sqlserver.jdbc.SQLServerException: Cannot use empty object or column names. Use a single space if necessary.
    com.microsoft.sqlserver.jdbc.SQLServerException: Cannot use empty object or column names. Use a single space if necessary.
         at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.doExecutePreparedStatement(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement$PrepStmtExecCmd.doExecute(Unknown Source)
         at com.microsoft.sqlserver.jdbc.TDSCommand.execute(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeCommand(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeStatement(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.executeUpdate(Unknown Source)
         at com.sunopsis.sql.SnpsQuery.executeUpdate(SnpsQuery.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execStdOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.h.y(h.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    Moreover in the command prompt it is indicating SQL Server Exception: Cannot invoke a rollback operation when the autocommit mode is set to true.
    Please help me out in executing this interface, all help is greatly appreciated.
    Many Thanks!!!

    Hi Rathish,
    In the query it is indicating that 'It is creating view on target'. This is the step that is causing trouble.
    Query description is :
    create view dbo.C$_0City_Trg
    as
    select      *
    from     [].odi_work.dbo.City_Trg
    Thanks in Advance!!!

  • While executing a query in SQL Server 2000

    Hi,
    I am connecting to an SQL Server 2000 using class.forName method...
    and i am reading the data from the queue continuously and execute an INSERT statement to a table..
    but the DBAs have a trigger to perform a set of actions when a new row is inserted into that table...
    once i insert a row, my program waits until those set of actions have been performed instead of just trying to read from the queue and insert another row into the table...i dont want to wait for anything...i just want to insert the data, go back to read the queue and insert more..
    is there any setting that i have to make for this to happen..
    tia...

    hari786 wrote:
    Hi,
    I am connecting to an SQL Server 2000 using class.forName method...forName() loads a driver - it does not connect to anything (regardless of database.)
    and i am reading the data from the queue continuously and execute an INSERT statement to a table..
    but the DBAs have a trigger to perform a set of actions when a new row is inserted into that table...
    once i insert a row, my program waits until those set of actions have been performed instead of just trying to read from the queue and insert another row into the table...i dont want to wait for anything...i just want to insert the data, go back to read the queue and insert more..You are out of luck then.
    An insert, from the databases point of view is not complete until it is complete. Which means running the triggers.
    So there is no way that any jdbc driver can stop that.
    Perhaps it might help to describe your actual problem which might lead to the suggestion of other solutions.

Maybe you are looking for

  • Error while using DB Adapter in BPEL

    Error: An error occurred while obtaining stored procedures. Verify that the database connection is valid. I have installed BPEL 10.1.2.0.2 and linked it to a local Oracle DB(not using Oracle Lite). Here, there is no problem invoking a stored procedur

  • How to check and delete the change logs for DSO

    Hello All, I have build a process chain that will delete the change logs for DSO prior to 7 days but when i executed it, the number of entries are still the same within DSO. Then i tried deleting directly from "Environment" menu from DSO maintainance

  • How to really edit source in .fla file?

    Hello,    I am a Java programmer and I can read and edit most anything I get my hands on. I don't work much with flash and when  I do there is no reason to look at any sort of source.    I received a file from someone to add to a project and the inst

  • Drag and drop not working correctly.

    I've got a 2nd monitor connected to my iMac 27". Before, whenever I had a finder (also happens on Adobe Bridge) window open on the other monitor and I drag and drop to the desktop, it would drop the file in the exact spot I dropped it at. Now, for so

  • How can I import .doc word files into Pages from Word 2008 for Mac?

    I find that if I try to insert a .doc document from the earlier version of Word for the Mac, it works fine, but if I try to insert a doc which has been saved in "compatibility mode" as a .doc in Word 2008, Pages doesn't recognise it. I didn't even kn