Unable to Remote connect to a SQL 2008 server

I just set up a virtual server with Godaddy with CF and SQL Server 2008
The SQL server appears to be running because if I RDC into the server and connect using the Server management Studio, it works. To find the instance I have to look at network devices and I find it under MACHINENAME\SQLINSTANCE
The problem I have is that I want to connect to this instance using server management studio on a computer with SQL2005 installed. I guess/hope that a 2005 can connect to a 2008
I'm not 100% sure what the exact correct format is for the "Server Name" when trying to set it up. I've tried everything I can think of
ServerName\IPNumber\Instance
IPNumber\ServerName\Instance
IPNumber\Instance
Nothing seems to work, it kicks back with a big error, aying it can not connect:
A network-related or instance-specific error occured while establishing a connection to SQL Server.
The server was not found or was not accessible. Verify the instance name is correct and that
SQL Server is configured to allow remote connections (provider: SQL Network Interfaces, Error: 26-
Error Locating Server/Istance Spcified) (Microsoft SQL Server)
The firewall on the server is off, I checked the properties of the instance and the option to allow remote connections is also checked
Anybody have any ideas?
Thanks
Mark

Solved this myself.
I was trying to log in with the user name of the adminstrator for the server, which worked locally while on the server but when I tried to use SQL SERVER AUTHENTICATION , tapping in the user name and password, it failed in the same way, even though the password was correct. Connecting using WINDOWS AUTHENTICATION worked, so I checked the users and found that user name did not have a password set because it was the admin I guess, so it just rejected all attempts using SQL SERVER AUTHENTICATION.
What I then did is tried the 'sa' user, and saw that it did have a password set when I viewed it in USERS... so I tried to connect remotely using that, and it worked... problem solved
Thought I'd post that, just incase anybody else came across the problem
After posting this I reversed a change that I had made from info found on another forum, and it stopped working! I put the change back again and it works, so it looks like a combo, here is the info that I found that helped fix the problem
"In the SQL server configuration manager, there is an item called SQL server network configuration, under protocols, I selected the properties of the TCP/IP protocol. There is a tab “IP Addresses” there, and at the bottom of the list is an entry called IPAll. In my case the TCP port was empty. I entered the SQL standard port 1433 in there and I was able to connect."
I had also since posting upgraded to 2008 locally, not that I believe it had anything to do with the problem
Mark

Similar Messages

  • Cannot connect to MS SQL 2008 R2 locally or remotely.

    When I try to connect to my SQL 2008 I get the following error:
    TITLE: Connect to Server
    Cannot connect to <machinename>.
    ADDITIONAL INFORMATION:
    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider:
    Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 53)
    I have a SQL 2000 instance, and a SQL 2008 R2 instance, running on Windows Server 2008 R2.  The sql 2000 instance is functioning correctly, as is the management studio.  I can connect to other SQL 2008 servers, just not my local one.
    Named pipes and TCPIP are both enabled.  The SQL Browser service is running, as is the SQL Server service.
    Any assistance would be greatly appreciated.

    Hello,
    Please see the following post:
    http://blogs.msdn.com/b/sql_protocols/archive/2007/03/31/named-pipes-provider-error-40-could-not-open-a-connection-to-sql-server.aspx
    Error 53 means the instance is not reachable. Since the SQL Server 2008 instance is a named instance, verify the dynamic port is not blocked by Windows firewall. Verify again TCP/IP and Named Pipes are enabled.
    http://msdn.microsoft.com/en-us/library/ms191294.aspx
    Hope
    this helps.  
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Since upgrading to the latest version, I am unable to listen to XM radio on-line and unable to remote connect to work. Please help.

    Since upgrading to the latest version, I am unable to listen to XM radio on-line and unable to remote connect to work. Please help.

    Hi
    Are you still facing the same error ? If yes, are you getting this error everytime you are trying to export ?
    Please try again and check.
    This is basically a compilation error , where files are not converted into proper format correctly.
    Thanks,
    Sanjit

  • Can't remote connect to Integration Services 2008 r2 with 2012 Management Studio

    I am getting a Connect to Server error "Class not registered" followed by the trying to connect to 2005 information. It is not a named instance. I don't get the error when connecting with Management Studio 2008. Any ideas. Everything else is
    all set up properly..

    Can you try this workaround and see if it works?
    http://www.ssistalk.com/2012/03/21/connecting-to-a-pre-sql-2012-ssis-instance-with-sql-2012-ssms/
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Sample Servlet code that connects to Microsoft SQL 2008

    Does anybody have sample Servlet code that connects to a Microsoft SQL 2008 Resource Pool?
    Thank you.

    JDBC is used to talk to databases. Not database utilities. As an example SSIS is not a database.
    So the question would be is the 2008 "Resource Governor" (of which "Resource Pools" are part) a utility or a database entity?
    [http://technet.microsoft.com/en-us/library/bb933866.aspx]
    I would guess that it isn't a database entity.
    Thus the only way to access it is if a database entity allows you do access it. And for that you would need to look for SQL Server system proc(s).

  • Calling a stored procedure on SQL 2008 server

    This might be easy one, but I tried different things just cannot get it to work.
    I am trying to call a stored procedure in SQL 2008 R2 server using Type 4 driver (sqljdbc4.jar) with JR.
    The stored procedure basically has one input and two outputs
    ALTER PROCEDURE [dbo].[usp_Example_Master]
    @XMLResponse as varchar(max),
    @ERROR_NUMBER as int OUTPUT,
    @ERROR_MESSAGE as varchar(300) OUTPUT
    as
    My program.
    Connection connection =null
    CallableStatement cs =null;
    connection = DriverManager.getConnection(url, username, password);
    cs = connection.prepareCall("{call dbo.usp_Example_Master(?,?,?)}");
    cs.setString(1,requestStr);
    cs.registerOutParameter(2, Types.INTEGER);
    cs.registerOutParameter(3, Types.VARCHAR);
    cs.execute();
    ============
    Error: The output parameter 1 was not registered for output.
    But if I added cs.registerOutParameter(1, Types.VARCHAR);
    Error: The formal parameter "@XMLResponse" was not declared as an OUTPUT parameter, but the actual parameter passed in requested output
    ==========
    Appreciate any help !

    Ok. I have an alternative to get it to work now.
    Instead of using index number, I am using the parameter name now. It works as expected and more intuitive any way.
    Ex.
    cs.setString("XMLResponse",req);
    cs.registerOutParameter("ERROR_NUMER",Type.INTEGER);
    Edited by: 903857 on Dec 21, 2011 2:45 PM

  • SAP Data Archiving in R/3 Ecc6.0, MS-SQL 2008 Server:

    We are using MS-SQL 2008 Database, these days our production database growing quite faster. I want to setting up Data Archiving using T'Code DB15. Can anyone give steps to setup Data Archinving using DB15?
    Edited by: Ahsan's on Jul 19, 2010 11:44 AM

    Archiving data is bound to legal things depending on the country and the company you work. Setting up archiving is not following a few steps, you'd need to have a system where to put the archiving data.
    Markus

  • Can not install SQL 2008 server R2

    Hello, 
      when I install SQL 2008 R2, there will be appear some error, and the detail log like these,
      2014-07-28 12:52:37 Slp: Running Action: NotifyProgressComplete
    2014-07-28 12:52:37 Slp: Sco: Attempting to set file full path to 'C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\SQLServer2008R2\x86\setup100.exe.config'
    2014-07-28 12:52:37 Slp: Sco: Attempting to normalize directory path 'C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\SQLServer2008R2\x86\setup100.exe.config'
    2014-07-28 12:52:37 Slp: Sco: Attempting to check if file 'C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\SQLServer2008R2\x86\setup100.exe.config' exists
    2014-07-28 12:52:37 Slp: The setup100.exe.config file was not found, therefore the DTSWizard and SQLWatson app config files were not replaced
    2014-07-28 12:52:37 Slp: Completed Action: NotifyProgressComplete, returned True
    2014-07-28 12:52:37 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:37 Slp: Skipping Action: DeleteUninstalledPatchRegistryAndCacheFolderAction
    2014-07-28 12:52:37 Slp: Action is being skipped due to the following restrictions: 
    2014-07-28 12:52:37 Slp: Condition "Do any of the specified features match the expected scenario Uninstall" did not pass as it returned false and true was expected.
    2014-07-28 12:52:37 Slp: Completed Action: ExecuteExtendedTimingsWorkflow, returned True
    2014-07-28 12:52:37 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:37 Slp: Running Action: ExecuteCloseWorkflow
    2014-07-28 12:52:37 Slp: Workflow to execute: 'CLOSE'
    2014-07-28 12:52:37 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:37 Slp: Running Action: ProduceStatusLogs
    2014-07-28 12:52:39 Slp: Completed Action: ProduceStatusLogs, returned True
    2014-07-28 12:52:39 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:39 Slp: Running Action: FinalizeProgressStatus
    2014-07-28 12:52:39 Slp: Completed Action: FinalizeProgressStatus, returned True
    2014-07-28 12:52:39 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:39 Slp: Running Action: RebootMessageAction
    2014-07-28 12:52:39 Slp: Completed Action: RebootMessageAction, returned True
    2014-07-28 12:52:39 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:39 Slp: Skipping Action: FinishPage
    2014-07-28 12:52:39 Slp: Action is being skipped due to the following restrictions: 
    2014-07-28 12:52:39 Slp: Condition "Is the user's scenario set to EditionUpgrade" did not pass as it returned false and true was expected.
    2014-07-28 12:52:39 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:39 Slp: Running Action: CloseUI
    2014-07-28 12:52:39 Slp: Stop Action
    2014-07-28 12:52:39 Slp: Completed Action: CloseUI, returned True
    2014-07-28 12:52:39 Slp: Completed Action: ExecuteCloseWorkflow, returned True
    2014-07-28 12:52:39 Slp: Completed Action: ExecuteCompleteWorkflow, returned True
    2014-07-28 12:52:47 Slp: 
    2014-07-28 12:52:47 Slp: 
    2014-07-28 12:52:47 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:47 Slp: 
    2014-07-28 12:52:47 Slp: Error result: -2068119551
    2014-07-28 12:52:47 Slp: Result facility code: 1211
    2014-07-28 12:52:47 Slp: Result error code: 1
    2014-07-28 12:52:47 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    2014-07-28 12:52:47 Slp: Sco: Attempting to open registry subkey 
    2014-07-28 12:52:47 Slp: Sco: Attempting to open registry subkey Software\Microsoft\PCHealth\ErrorReporting\DW\Installed
    2014-07-28 12:52:47 Slp: Sco: Attempting to get registry value DW0200
    2014-07-28 12:52:48 Slp: Submitted 1 of 1 failures to the Watson data repository
    can you help me? thanks,

    Hi,
    According to your description, we need to verify that if the setup file of SQL Server is corrupted, if it is corrupted, as Shanky’s post, please download it again and reinstall SQL Server 2008 R2 .
    However, if the setup file is complete, please check if there is an anti-virus software or other third-party software on your computer blocking the process of SQL Server installation. In addition, make sure that you configure SQL Server service accounts
    appropriately with administrator permission during the installation. For more details about this error, please review this similar thread:
    Install SQL 2008 R2 on Win 8 fails with Microsoft.SqlServer.Configuration.Sco.ScoException
    For more information about installing SQL Server 2008 R2,please review this blog:
    SQL Server 2008 R2 Sysprep Step by Step.
    Thanks,
    Lydia Zhang

  • Field Explorer is empty after establishing a connection to a SQL 2008 SP

    I am trying to create a report using a SQL Server 2008 stored procedure as the source of data using an ADO connection.
    The stored procedure is slightly odd, in that its building up the SQL as a string, Below is a snippet of the code to show what I mean. The reason for this is that I need to build up the WHERE clause dependign on user input.
         SELECT @var_query = 'SELECT  c_source,
            c_ccy,
            n_quantity,
           a_price,
           d_price,
           a_isd
                         FROM     ldsdbo.lds_testing_filter_data_vw WHERE'
         PRINT @var_query
         EXEC (@var_query)
    This runs fine in SQL Server, but when I try and use it in Crystal, the Database Field list is empty.
    Does anyone know whats going on, and how I can make this work?
    Thanks
    Nathan

    Well... Now I just feel obligated to reply...
    The key(s) to using an SP as your data source is to make sure that your SP does in fact return a single data set.
    So... begin by testing it in SSMS. If the following works in SSMS, then it should also work in CR...
    EXEC usp_MyStoredProcedure 'ParamValue1', 'PramValue2'
    ... note: the above example is based on the premise that the SP name is "usp_MyStoredProcedure" and you are tryig two pass 'ParamValue1' & 'PramValue2' as values...
    Obviously, you should use the actual SP name and any necessary test values if it has parameters.
    Assuming that the SP executes in SSMS AND returns a result set, you should be good to go in CR... Just do as Don mentioned and make sure you are using the NC10 drivers.
    If you are still getting stuck, remove the SP from the Database Expert and call the SP from a Command instead. It's easy to do as it allows you to use the exact syntax you used in SSMS. You'll just want to replace any hard coded values with CR parameters... (Just add the parameters to the parameter list of the command and reference them like this...
    EXEC usp_MyStoredProcedure '{?Parameter1}', '{?Parameter2}'
    HTH,
    Jason

  • SQL 2000 ODBC CONNECTION STRING FOR SQL 2008

    i have vb 6 application. Database is SQL server 2000.
    my connection string is (using odbc driver),
            .ConnectionString = "Driver={SQL Server};SERVER=" & mServer & ";DATABASE=mydb;UID=" & mLogin.Username & ";pwd=" & mLogin.Password & ";"
    Now i have tried this application with SQL server express 2008 R2
    Can i still keep the old connection string? will there be any problem in future?
    (if i have to change then have to change at so many places.....)
    I can run application without any problem for now (not changed connection string to new one)
    otherwise i have to use ODBC or OLEDB which are,
            .ConnectionString = "Driver={SQL Server Native Client 10.0};SERVER=" & mServer & ";DATABASE=mydb;UID=" & mLogin.Username & ";pwd=" & mLogin.Password & ";"
    or
            .ConnectionString = "Provider=SQLNCLI10;SERVER=" & mServer & ";DATABASE=mydb;UID=" & mLogin.Username & ";pwd=" & mLogin.Password & ";"
    if i have to change to new connection string Which one is better to use odbc or oledb.
    h2007

    personally I favor ODBC as it is easy to use sometime. Additionally you can check the link below:
    http://social.msdn.microsoft.com/Forums/en/sqlintegrationservices/thread/19e0c306-0be4-46b5-b207-0937931d63a7 
    cheers!!!
    Vatsa
    www.objectiveprogramming.com

  • Unable to establish connection to MS SQL 2005 from topology manager in ODI

    Hi,
    My environment:
    WinXP pro SP3, MS SQL SERVER2005, Oracle data integrator latest version.
    MS SQL 2005 JDBC 2.0 DRIVER, JRE 1.4.2
    com.microsoft.sqlserver.jdbc.SQLServerDriver
    jdbc:microsoft:sqlserver://testserver:1433;SelectMethod=cursor;databaseName=AdventureWorksDW;integratedSecurity=false
    I set the classpath, odi_home path and path poiting to jdbc driver in odi home->drivers and to odi->jre->1.4.2
    Before i begin, i would like to mention, i have gone through many forum topicson this one and made sure my string is all right.
    When I try to create a new data server in topology manager, it says connection is successful, but after that when i try to click OK, it gives me a error:
    java.lang.UnsupportedClassVersionError: com/microsoft/sqlserver/jdbc/SQLServerDriver (Unsupported major.minor version 49.0)
         at java.lang.ClassLoader.defineClass0(Native Method)
         at java.lang.ClassLoader.defineClass(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.access$100(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at com.sunopsis.sql.SnpsConnection.a(SnpsConnection.java)
         at com.sunopsis.sql.SnpsConnection.testConnection(SnpsConnection.java)
         at com.sunopsis.sql.SnpsConnection.testConnection(SnpsConnection.java)
         at com.sunopsis.graphical.frame.b.jz.dP(jz.java)
         at com.sunopsis.graphical.frame.b.jz.bD(jz.java)
         at com.sunopsis.graphical.frame.bo.bz(bo.java)
         at com.sunopsis.graphical.frame.b.jz.em(jz.java)
         at com.sunopsis.graphical.frame.b.jz.<init>(jz.java)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at com.sunopsis.graphical.frame.bb.b(bb.java)
         at com.sunopsis.graphical.tools.utils.swingworker.v.call(v.java)
         at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)
         at com.sunopsis.graphical.tools.utils.swingworker.l.run(l.java)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:665)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:690)
         at java.lang.Thread.run(Unknown Source)
    Someone please help me.
    Thank you.
    Edited by: user9946607 on Feb 7, 2010 7:20 AM
    Edited by: user9946607 on Feb 7, 2010 7:21 AM

    Hi John,
    Thank you for your reply. The link was good, but it did not solve my problem.
    The artcile you provided me, lead me to another one: http://msdn.microsoft.com/en-us/library/ms378422.aspx
    I download JRE 1.5.
    Based on these, I have JDBC 2.0 (sqljdbc and sqljdbc4.0) files.
    I copy only sqljdbc to my classpath = C:\OraHome_1\oracledi\drivers\sqljdbc.jar
    my ODI_JAVA_HOME = C:\OraHome_1\jre\jre1.5.0_11
    Same error in topology manager.
    Data server name: test.ahu.edu, 1444
    Conntection string:
    com.microsoft.sqlserver.jdbc.SQLServerDriver
    jdbc:microsoft:sqlserver://test.ahu.edu:1444;SelectMethod=cursor;databaseName=AdventureWorksDW;integratedSecurity=false
    I am not sure show the share screen shots here, but if there is a way, please let me know, I can upload the screen shots.
    Please help me.
    java.sql.SQLException: No suitable driver
         at java.sql.DriverManager.getDriver(Unknown Source)
         at com.sunopsis.sql.SnpsConnection.u(SnpsConnection.java)
         at com.sunopsis.sql.SnpsConnection.a(SnpsConnection.java)
         at com.sunopsis.sql.SnpsConnection.testConnection(SnpsConnection.java)
         at com.sunopsis.sql.SnpsConnection.testConnection(SnpsConnection.java)
         at com.sunopsis.graphical.l.pm.o(pm.java)
         at com.sunopsis.graphical.l.pm.r(pm.java)
         at com.sunopsis.graphical.l.pm.g(pm.java)
         at com.sunopsis.graphical.l.pm.a(pm.java)
         at com.sunopsis.graphical.l.pm.a(pm.java)
         at com.sunopsis.graphical.l.iz.actionPerformed(iz.java)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.Dialog$1.run(Unknown Source)
         at java.awt.Dialog$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.awt.Dialog.show(Unknown Source)
         at java.awt.Component.show(Unknown Source)
         at java.awt.Component.setVisible(Unknown Source)
         at com.sunopsis.graphical.l.pm.q(pm.java)
         at com.sunopsis.graphical.l.pm.<init>(pm.java)
         at com.sunopsis.graphical.frame.b.jh.bx(jh.java)
         at com.sunopsis.graphical.frame.bo.w(bo.java)
         at com.sunopsis.graphical.frame.bo.d(bo.java)
         at com.sunopsis.graphical.frame.w.actionPerformed(w.java)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Thank you.

  • Unable to remotely connect to Mac Mini via MBP

      I can see the MM in Finder on the MBP, but when clicking on it, no response what so ever. Used to give me the option to "Share Screen" etc and I could control the MM using the MBP's keyboard. I can also see the MBP in the MM's Finder when using the TV as the MM's monitor, but no response when clicking on it either. This worked fine until yesterday. I haven't changed any settings in System Preferences/Sharing and have restarted both devices. I can still control the MM remotely using Mobile Mouse. Any ideas as to what could be wrong?
    Not sure if this is a question that should be posted in the Networking section or not, as I don't seem to have any issues with my network.

    Reset the Time Capsule and it's working again. Odd, never had this problem before.

  • Which is best remote software to access Windows 2008 Server from Mac Air

    Hi
    Is anyone using, succesfully, remote software to log into a Windows Server 2008 network from a Mac. I use Wyse Pocket Cloud Pro on my iPhone but there doesn't seem to be an app for a Mac Air. Any suggestions or help appreciated?

    Ummm... Microsoft's own RDC for Mac
    http://www.microsoft.com/mac/remote-desktop-client

  • Date parameter does not work in SharePoint 2010 report using SQL 2008 Server Reporting Service

    Here is the settings:
    SharePoint 2010 with SQL server 2008 reporting services configured
    When create a report for a SP list using SQL server report builder (3.0) the date parameter does not work.
    The data parameter is set as "date and time" type and field name equals the col name in the SP list
    When run the report, the whatever dates I select, the result is always the same, so the parameters do not take any effect.
    Is any step missing?
    Thanks for any advice !

    Hi ,
    How did you configure you "date and time" type parameter and field name equals the col name in the SP list?
    Have you tested if other type parameter worked?
    Have you tried typing the date format as 20140722 in your date parameter filed before run the report?
    http://whitepages.unlimitedviz.com/2012/02/using-sharepoint-filters-with-reporting-services-parameters-for-personalized-reports/
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Daniel Yang
    TechNet Community Support

  • Unable to remote deploy to Sun Java Application Server 9.1

    How do I configure Studio Creator to remote deploy to a stand alone sun Java Application server 9.1 installation ? I have tried configuring it as a remote deployment server in the IDE but that doesn't work.
    Edited by: TroyDuncan on Feb 19, 2008 2:25 PM

    See the following url for Supported deployment servers of the Sun Java Studio Creator IDE
    http://developers.sun.com/jscreator/sysreqs/depservers.jsp
    I would recommend using NetBeans . Sun Java Application Server 9.1 is tested with NetBeans:
    http://www.netbeans.org/community/releases/60/relnotes.html#supported_technologies
    Here are some urls to get started with NetBeans:
    http://www.netbeans.org/index.html
    http://www.netbeans.org/kb/index.html

Maybe you are looking for

  • Material Management -SA

    Hi MM Experts I have a scenario can any one help me to map in to SAP. Purchasing Process: u2022     A long time agreement is made with Vendor u2022     Vendor can be of Monthly /Weekly/Biweekly u2022     Agreement is created based on MPS (54 weeks) u

  • Very New to Jave, need to do totals/subtotals

    Hi, (I hope this is the right place) I'm VERY new to Java (I mainly do wourk with php interfaces for MyAQL databases). Up until now, there hasn't been anything I couldn't do with PHP that I needed to... My boss recently requested subtotals/totals at

  • New aggregate function in IR

    Hi all, Can we create a new aggregate function in IR instead of using predefined functions? I need to show percentage below each column based on my function returning percentage value. Is there any way to do it? Thanks Sunil Bhatia

  • Creating an array from a csv

    Hi all, I am currently working on a basic app for a masteres dissertation where I am looking to input a number of map pins within the map kit from a csv file I have. The file is in my resources and I have map kit up and running but being an archaeolo

  • Error 1 when loading data

    guys can u pls help me out regarding an error called Error 1 when loading external data in the infopackage. when I click on start data load am getting that error. Waiting for the answer.