How to kill remote debugger listener...?

Hi,
Is there a way to kill the remote debugger listener, without closing the sql-developer (1.5.5)...?
Because it hangs sometimes and I have to establish a new port and a new port ...
Thanks, Juergen

You can't.
I complained about this too a couple of years ago, management acknowledged the issue, but still no sign of wanting to enhance the behaviour.
Only solution I know is restart sqldev.
Best add this as feature request at the SQL Developer Exchange, so other users can vote to add weight for possible future implementation.
Regards,
K.

Similar Messages

  • How to kill TCP-IP Listen or Open Connection while they are waiting to connect?

    We have an application that acts as a control panel for a customer's device.
    It connects to the device using TCP-IP.
    It can be configured to connect as a server (listener) or as a client.
    The user of this applicaiton must have the ability to disconnect from the device and point and connect to a different device at a different IP and port.
    When the user tries to connect to a device but can not (the device is not ready or the IP address is wrong) he wants to abort the connection, change the settings then restart the attempt to connect.  
    How do I stop the TCP-IP Listen or TCP-IP Open Connection VIs?  We typically use a timeout of a couple seconds and this is a long delay for a respond to the operator when he wants to abort the connection attempt.

    Thanks for the quick response. 
    I was hoping there was a more elegant Labview solution that may work for both the wait on listen and the connect VI.
    I tried to close the wait on listener by closing the ref from the create listener.
    That works.  See attached picture. I use a queue to send the abort message.  The wait on listen state will be blocked until either a connection is made or an abort message is sent via the queue.  If a message is sent, the dequeue vi unblocks and causes the listener reference to close which will kill the wait on listen VI.  If a TCP-IP connection is made it will close the queue reference which will kill the dequeue vi.
    I guess for the TCP-IP connect VI I can:
    A. Use a couple second time out that is tolerable to the operator if then abort the connection attempt. (like you suggested)
    or
    B. Create a VI with the TCP-IP Open Connection VI in it.  I can launch that VI dynamically and wait until done (invoke node Run VI with Wait Until Done set to true).  If a connection is made it will finish and I will read the outputs using an invoke node (Ctrl Val.Get).  If it needs to be aborted, I will abort the VI using an invoke node (VI Abort).
    Attachments:
    Wait on listener with Abort example..JPG ‏265 KB

  • How Do You Change the Remote Desktop Listening Port in Win 8.1 Pro

    I am trying to setup two Win 8.1 Pro computers for Remote Desktop access on my local network. I can get Remote Desktop working fine on both when they are using the default RD port 3389. I am unable to change the listening port on one of the computers so
    that I can access either via a public Internet connection. I change the listening port in the Registry, reboot the computer and verify that the port number has been changed BUT the computer still responds to the old port 3389 and can't connect via the new
    port number. I added a Firewall rule for the new port, but that did NOT solve the problem. 
    I have followed the procedure below and verified in the Registry that the port is changed but the Remote Desktop remains accessible only on the default port 3389. The new port number in the Registry is 39699. I used a network scanner and it shows the computer
    is still listening on port 3389 for Remote Desktop connections. Why is Win 8.1 Pro ignoring the new port number in the Registry and still responding on 3389? Is there another place in Win 8.1 Pro that the port also needs to be changed. I also added a new rule
    in the Firewall to allow incoming requests on port 39699? This is a very frustrating problem, any suggestions are greatly appreciated. 
    I followed the procedure shown below.
    Hi ,
    Based on my test, we can change the listening port for Remote Desktop.
    To change the port that Remote Desktop listens on, follow these steps.
    1.Start Registry Editor.
    2.Locate and then click the following registry subkey:
    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TerminalServer\WinStations\RDP-Tcp\PortNumber
    3.On the Edit menu, click Modify, and then click Decimal.
    4.Type the new port number, and then click OK.
    5.Quit Registry Editor.
    6.Restart the computer.
    Meanwhile, please note, please type the new integer port number between 1025 and 65535 in the PortNumber text box.
    And make sure the new port number is not in use by other application.
    We may use the command below to check the result.
    netstat -a
    Also, we can use Network Monitor to trace the port.
    Microsoft Network Monitor 3.4
    Regards,

    Hi,
    There are two item that should be modified to change the default 3389 port:
    One is: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\Wds\rdpwd\Tds\tcp]. Modify  the PortNamber to the one you want.
    The other is: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentContro1Set\Control\Tenninal Server\WinStations\RDP\Tcp]. Modify the PortNumber to the one you want.
    In your case, you missed the first one.
    Regards
    Wade Liu
    TechNet Community Support

  • *** FREE REMOTE DEBUGGER UTILITY ***

    I just created this "remote debugger" last week because I wanted to get runtime output from my servlets without having to resort to finding the server logs...scanning them...etc. It can also be used to log info locally. Here is the code for the screen logger:
    package com.mycode.remotedebugger.applet;import javax.swing.*;import java.awt.*;import java.awt.event.*;import java.net.*;import java.io.*;public class CRemoteDebugger extends JApplet implements Runnable{   boolean isStandalone         = false;   static ServerSocket m_socket = null;   JScrollPane jScrollPane1     = new JScrollPane();   static Thread runner         = null;   static Socket connection     = null;   BorderLayout borderLayout1   = new BorderLayout();   JTextArea jTextArea1         = new JTextArea();   /**    * Constructs a new instance.    */   /**    * getParameter    * @param key    * @param def    * @return java.lang.String    */   public String getParameter(String key, String def) {      if (isStandalone) {         return System.getProperty(key, def);      }      if (getParameter(key) != null) {         return getParameter(key);      }      return def;   }   public CRemoteDebugger() {   }   /**    * Initializes the state of this instance.    */   /**    * init    */   public void init() {      try  {         jbInit();      }      catch (Exception e) {         e.printStackTrace();      }   }   public boolean isConnected()   {      return m_socket != null;   }   private void jbInit() throws Exception   {      this.setSize(new Dimension(400, 400));      this.getContentPane().add(jScrollPane1, BorderLayout.CENTER);      jScrollPane1.getViewport().add(jTextArea1, null);      runner = new Thread(this);      runner.start();   }   public void run()   {      try {         m_socket = new ServerSocket(6666);         while(true)  {            InetAddress ia = InetAddress.getLocalHost();            connection = m_socket.accept();            InputStream is = connection.getInputStream();            BufferedReader br = new BufferedReader(new InputStreamReader(is));            String strLine = br.readLine();            while(strLine != null)  {               jTextArea1.append(strLine + "\n");               jTextArea1.setCaretPosition(jTextArea1.getDocument().getLength());               strLine = br.readLine();            }         }      } catch(Exception e)  {      }   }   /**    * start    */   public void start() {     setLookAndFeel();   }   /**    * stop    */   public void stop() {   }   /**    * destroy    */   public void destroy() {    if(m_socket != null)  {      try  {         m_socket.close();      } catch (IOException ioe)  {      }      m_socket = null;    }    if(runner != null)      runner = null;    if(connection != null)  {      try {         connection.close();      } catch(IOException ioe)  {      }         connection = null;    }   }   /**    * getAppletInfo    * @return java.lang.String    */   public String getAppletInfo() {      return "Applet Information";   }   /**    * getParameterInfo    * @return java.lang.String[][]    */   public String[][] getParameterInfo() {      return null;   }   /**    * main    * @param args    */   public static void main(String[] args) {      CRemoteDebugger applet = new CRemoteDebugger();      applet.isStandalone = true;      JFrame frame = new JFrame();      frame.setTitle("Remote Debugging");      frame.getContentPane().add(applet, BorderLayout.CENTER);      applet.init();      applet.start();      frame.setSize(400, 420);      Dimension d = Toolkit.getDefaultToolkit().getScreenSize();      frame.setLocation((d.width - frame.getSize().width) / 2, (d.height - frame.getSize().height) / 2);      frame.setVisible(true);      frame.addWindowListener(new WindowAdapter() {        public void windowClosing(WindowEvent e) {          if(m_socket != null)  {             try  {                m_socket.close();             } catch (IOException ioe)  {             }             m_socket = null;          }          if(runner != null)            runner = null;          if(connection != null)  {             try {               connection.close();          } catch(IOException ioe)  {          }          connection = null;        }           System.exit(0);        }      });   }   void setLookAndFeel(){      try {         UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());      }      catch(Exception e) {         e.printStackTrace();      }   }}
    I compiled this and put it into a jar file for easy running via a shortcut on my desktop.
    Here is the static function you would put either in your application/applet or perhaps in some utility class that you import:
    package com.mycode.common.utilities;import java.awt.*;import java.awt.event.*;import java.net.*;import java.io.*;public class RemoteDebugMessage{   static Socket m_socket            = null;   static PrintWriter serverOutput   = null;   /**    * Constructor    */   public static void Print(String strClient, int nPort, String strMessage)   {      try {         m_socket = new Socket(strClient,nPort);         if(m_socket != null)  {            OutputStream os = m_socket.getOutputStream();            if(os != null)  {               serverOutput = new PrintWriter(new BufferedOutputStream(m_socket.getOutputStream()),true);               if(serverOutput != null)  {                  serverOutput.println(strMessage);               }            }         }      } catch(IOException ioe)  {      }      try {         m_socket.close();         m_socket = null;         serverOutput = null;      } catch(IOException ioe)  {      }   }}
    The "server" side listens on port 6666 (you can always change to whatever port you like and recompile) Then, in your code where you wish to watch messages in realtime, you call the static function above:
    RemoteDebugMessage.Print("MachineName",6666,"This is my message!");
    Where "MachineName" is the name of your pc.

    Thank god for the scrollbars. :)
    Maybe you should repost and add proper newlines.

  • How to use Jdeveloper Debugger

    Hi Friends,
    Some one tell me how to use jdeveloper debugger for debugging OAF Code in jdeveloper 10g
    Thanks & Regards
    Tarun

    hi, i also installed sqldeveloper and got the same error message. can you help troubleshoot this error?
    Connecting to the database ccs_c_edwdev.
    Executing PL/SQL: ALTER SESSION SET PLSQL_DEBUG=TRUE
    Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '127.0.0.1', '1551' )
    ORA-30683: failure establishing connection to debugger
    ORA-12541: TNS:no listener
    ORA-06512: at "SYS.DBMS_DEBUG_JDWP", line 68
    ORA-06512: at line 1
    Process exited.
    Disconnecting from the database ccs_c_edwdev.

  • Multiple remote debugger connections from JDev

    Hello,
    I'm running JDev Studio Edition Version 11.1.2.3.0
    I need to debug an application running on a 2 node WLS Cluster. I have the two servers running in debug mode listening on different hosts/ports.
    In JDev I click the debug button twice and open a connection to each server in turn, however I suspect that the last connection made may be the only one that's active?
    Can somebody please clarify whether it's possible to open multiple remote debugger connections in JDev?
    Many thanks.

    Hello,
    I'm running JDev Studio Edition Version 11.1.2.3.0
    I need to debug an application running on a 2 node WLS Cluster. I have the two servers running in debug mode listening on different hosts/ports.
    In JDev I click the debug button twice and open a connection to each server in turn, however I suspect that the last connection made may be the only one that's active?
    Can somebody please clarify whether it's possible to open multiple remote debugger connections in JDev?
    Many thanks.

  • Remote Debug Listener crashes

    Hi,
    I try to remote debug via SQL-Developer and create a remote debug listener in my first sqldeveloper.
    Then I use a second sqldeveloper and run the following statements as script everything works fine. My first sqldeveloper stops at the breakpoint and I can debug
    set serveroutput on;
    execute DBMS_DEBUG_JDWP.CONNECT_TCP('myIp',4010);
    declare
    begin
      do_something(2); -- in this function is a breakpoint set
    end;
    execute DBMS_DEBUG_JDWP.disconnect(' myIp ',4010);
    When I try to run the script e.g. in sqlplus I get following stacktrace in my first sqldeveloper console and the listener is closed
    java.lang.StringIndexOutOfBoundsException: String index out of range: -2
      at java.lang.String.substring(String.java:1911)
      at com.sun.tools.jdi.JNITypeParser.nextTypeName(JNITypeParser.java:204)
      at com.sun.tools.jdi.JNITypeParser.typeNameList(JNITypeParser.java:140)
      at com.sun.tools.jdi.JNITypeParser.typeName(JNITypeParser.java:85)
      at com.sun.tools.jdi.TypeImpl.name(TypeImpl.java:44)
      at com.sun.tools.jdi.ReferenceTypeImpl.compareTo(ReferenceTypeImpl.java:150)
      at com.sun.tools.jdi.ReferenceTypeImpl.compareTo(ReferenceTypeImpl.java:33)
      at java.util.TreeMap.put(TreeMap.java:560)
      at java.util.TreeSet.add(TreeSet.java:255)
      at com.sun.tools.jdi.VirtualMachineImpl.addReferenceType(VirtualMachineImpl.java:785)
      at com.sun.tools.jdi.VirtualMachineImpl.referenceType(VirtualMachineImpl.java:901)
      at com.sun.tools.jdi.VirtualMachineImpl.retrieveAllClasses1_4(VirtualMachineImpl.java:979)
      at com.sun.tools.jdi.VirtualMachineImpl.retrieveAllClasses(VirtualMachineImpl.java:995)
      at com.sun.tools.jdi.VirtualMachineImpl.allClasses(VirtualMachineImpl.java:284)
      at oracle.jdevimpl.debugger.jdi.DebugJDI.<init>(DebugJDI.java:420)
      at oracle.jdevimpl.debugger.jdi.DebugJDIConnectorListen.run(DebugJDIConnectorListen.java:133)
      at java.lang.Thread.run(Thread.java:724)
    Does anyone have an idea what I'm doing wrong, or what's maybe misconfigured?
    System Configuration
    Client:
         Windows 7
         SqlDeveloper Version 4.0.0.12 Build MAIN-12.27 - running with jdk1.7.0_25
    Database Server:
         Oracle 11.2.0.3.0

    Hi
    Has someone find an answer to this?
    Debugger attempting to connect to remote process at localhost 4000.
    ...............................Debugger unable to connect to remote process.This is the same message you get when you try to run a debug session under JDeveloper, but with OJVM, not JPDA.
    If this is a bug and will be fixed, can the SQL Developer team please make a post?

  • Not able to start remote debug listener

    HI,
    I'm using SQL Developer 1.1.0.23.64 and have read this article explaining remote pl/sql debugging.
    http://sueharper.blogspot.com/2006/07/remote-debugging-with-sql-developer_13.html
    When i try to start the debugger listener in SQL Developer (right click the database connection and choosing "remote debug") it seems like that the SQL Developer tries to connect to a listener instead of start listening. This is what console displays:
    Debugger attempting to connect to remote process at LocalHost 4000...............Debugger unable to connect to remote process.
    I thought that it should start listening instead of trying to connect to some other listener. What do I do wrong?
    When I'm using remote debugging from JDeveloper every thing is fine!
    Regards
    Jacob

    Hi
    Has someone find an answer to this?
    Debugger attempting to connect to remote process at localhost 4000.
    ...............................Debugger unable to connect to remote process.This is the same message you get when you try to run a debug session under JDeveloper, but with OJVM, not JPDA.
    If this is a bug and will be fixed, can the SQL Developer team please make a post?

  • Visual Studio cannot remote debug Azure cloud service: There was a failure to launch the remote debugger

    I am trying to invoke remote debugger on an Azure worker role cloud service, following the example of
    http://msdn.microsoft.com/en-us/library/azure/ff683670.aspx
    But on attaching the remote debugger for the cloud service instance
    Microsoft Visual Studio
    There was a failure to launch the remote debugger.
    OK  
    According to somebody else's extra coverage on the topic, there are extra ports 4016/4017 that need to be taken care of (but do they have to be exposed externally)?
    http://developers.de/blogs/damir_dobric/archive/2014/02/04/behind-windows-azure-remote-debugger.aspx
    So servicedefinition.csdef gets
        <Endpoints>
          <InputEndpoint name="Endpoint1" protocol="http" port="80" />
          <InputEndpoint name="RemoteDebugger" protocol="tcp" port="4016" localPort="4016" />
          <InputEndpoint name="RemoteDebugger2" protocol="tcp" port="4017" localPort="4017" />
          <InstanceInputEndpoint name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Connector" protocol="tcp" localPort="30398">
            <AllocatePublicPortFrom>
              <FixedPortRange min="30400" max="30424" />
            </AllocatePublicPortFrom>
          </InstanceInputEndpoint>
          <InstanceInputEndpoint name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Forwarder" protocol="tcp" localPort="31398">
            <AllocatePublicPortFrom>
              <FixedPortRange min="31400" max="31424" />
            </AllocatePublicPortFrom>
          </InstanceInputEndpoint>
        </Endpoints>
    Serviceconfiguration.cscfg gets
          <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Connector.Enabled" value="true" />
          <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Connector.Version" value="2.3" />
          <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.ClientThumbprint" value="THUMBNAIL" />
          <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.ServerThumbprint" value="THUMBNAIL" />
        </ConfigurationSettings>
        <Certificates>
          <Certificate name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.TransportValidation" thumbprint="THUMBNAIL" thumbprintAlgorithm="sha1"
    />
        </Certificates>
    But all these are to no avail; the same error still pops for Visual Studio 2013 Update 4; Azure SDK 2.3
    Anybody regularly perform remote debugging for Azure cloud services?
    The melody of logic will always play out the truth. ~ Narumi Ayumu, Spiral

    And, how do I control that in Visual Studio?
    All I get is the Attach Debugger... context menu option in the Azure cloud service nodes in Server Explorer. That is where it is failing. There are no customisable options.
    Because of that, the Attach to Process dialog box is unable to retrieve the list of processes (to debug) in the remote worker role instance server.
    I tested a blank-template worker role project and published to a new cloud project, and this simplistic copy had no problems with the Remote debugger.
    Now the question is, what is it about this real-world project/cloud service that is different from blank sample? From what I compare between what I think are the relevant settings, there are none.
    ServiceDefinition.csdef
    <Imports>
    <Import moduleName="Diagnostics" />
    <Import moduleName="RemoteAccess" />
    <Import moduleName="RemoteForwarder" />
    <Import moduleName="RemoteDebuggerConnector" />
    </Imports>
    <Contents>
    <Content destination=".\">
    <SourceDirectory path="D:\Projects\experiments\workerrole1\workerrole1\rcf\Debug\RemoteDebuggerContent\" />
    </Content>
    </Contents>
    <Endpoints>
    <InstanceInputEndpoint name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Connector" protocol="tcp" localPort="30398">
    <AllocatePublicPortFrom>
    <FixedPortRange min="30400" max="30424" />
    </AllocatePublicPortFrom>
    </InstanceInputEndpoint>
    <InstanceInputEndpoint name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Forwarder" protocol="tcp" localPort="31398">
    <AllocatePublicPortFrom>
    <FixedPortRange min="31400" max="31424" />
    </AllocatePublicPortFrom>
    </InstanceInputEndpoint>
    </Endpoints>
    ServiceConfiguration.cscfg
    <ConfigurationSettings>
    <Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="DefaultEndpointsProtocol=https;AccountName=storage;AccountKey=" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.Enabled" value="true" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.AccountUsername" value="" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.AccountEncryptedPassword" value="" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.AccountExpiration" value="2015-12-31T23:59:59.0000000+08:00" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteForwarder.Enabled" value="true" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Connector.Enabled" value="true" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Connector.Version" value="2.4" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.ClientThumbprint" value="" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.ServerThumbprint" value="" />
    </ConfigurationSettings>
    <Certificates>
    <Certificate name="Microsoft.WindowsAzure.Plugins.RemoteAccess.PasswordEncryption" thumbprint="" thumbprintAlgorithm="sha1" />
    <Certificate name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.TransportValidation" thumbprint="" thumbprintAlgorithm="sha1" />
    </Certificates>
    The melody of logic will always play out the truth. ~ Narumi Ayumu, Spiral

  • How to kill Active Data Request in DSO

    Hi all,
    I have 2 dsos ( A, B). Data loads from A to B.
    Now I have deleted data from DSO B by using option delete data ( did killed one running request by turing the status to RED).
    when I try to load data again to DSO B, it is not allowing me to execute the DTP.
    Message is Request 257.617 is stil processing.
    I am SAP BI 7.0 environment.
    Please suggest how to kill active request ( I am not seeing it RSMO/SM37).
    I tried to use Zombie Request FM, it didnt worked.
    Thanks All,
    Jason

    Srinivas,
    Thanks for the reply.
    When I go RSRQ
    I can see the request , the exception it is showing is CX_RS_FAILED logged.
    SM51, when try to kill the process it says
    SAP System Message:
    Work Process restarted; session terminated
    Apologies for earlier post messages saying that I did nt saw the message in RSMO, I can see it is in yellow process.
    Please suggest how to kill the processes .
    Apperciate your response..
    Thank you
    Jason

  • How to open remote front panel of vi's within an executable from an executable.

    How do I remotely open front panels of subvi's contained within an executable, where both computers just have LabVIEW Real Time loaded (programs are run as executables)? I want to use the Method: Remote Panel Open Connection to Server to make this work. I have been getting error 1032 "VI Server Access Denied". I do not want to use the web page method (connection is too slow when controlling front panel objects and I can not programmatically exit out (release control of vi) of the web page).
    Ex. 
    PC1: Has executable1 using Remote Panel Open Connection to Server Method etc. code inside. This program will make a call to executable2 (on PC2) to open up different vi front panels (within executable2), so the controls can be changed from PC1. I want to be able to make changes to the vi's running on PC2 from PC1.
    PC2: Has executable2 containing several subvi's.

    Not sure if this is what you are looking for but here is how to launch executables that can interact
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion

  • How to kill a job in SM37

    hi All,
             can someone wxplain me how to kill a job in SM37 which is delaed by 10,000 secs.
    cheers

    Hi Rase,
    goto SM37 and click on the active selection and enter the jobname and then click excute the particulr job should appear highlight the jobname then click on the stop iconthat appears on the taskbar( 3 rd from left)
    or goto SM50 Click on the process and select process->stop without core
    or
    set a running infopack of the chain (in RSMO) to red, thats will stop the chain (if there are no parallels, else set all parallels to red).
    ****Assign Points If Helpful****
    Regards,
    Ravikanth

  • How can i remote a computer outside of my nextwork and has a dynamic IP

    How can i remote a computer outside of my nextwork and has a dynamic IP.
    I have have mac set up overseas and will need to remote access it from time to time, but the mac has a dynamic IP, is there anyway around for me to access IT.
    Have been using "log me in" but its too slow.
    Thanks in advance for any assistance

    The subject of connecting ARD via the Internet has been covered here many times already (search the forum for "Internet"), but take a look at this web page:
    http://www.starklmc.com/ard.htm
    It should help, though you may have to refer to your router's documentation for specifics on opening and forward ports in that particular unit.
    To get a "static IP" use a service like dyndns.com

  • How to implement remote blob storage in SharePoint 2013

    How to implement remote blob storage in SharePoint 2013 

    Try below:
    http://blogs.technet.com/b/wbaer/archive/2013/05/23/deploying-remote-blob-storage-with-sql-server-2012-alwayson-availability-groups.aspx
    If this helped you resolve your issue, please mark it Answered. You can reach me through http://itfreesupport.com/

  • Cant sync my iphone contacts with yahoo, it says "unknown error (4)" and tells me to come back later, been doing it for months. Any ideas on how to kill it?

    cant sync my iphone contacts with yahoo, it says "unknown error (4)" and tells me to come back later, been doing it for months. Any ideas on how to kill it?

    Hey joshuafromisr,
    If you resintall iTunes, it should fix the issue. The following document will go over how to remove iTunes fully and then reinstall. Depending on what version of Windows you're running you'll either follow the directions here:
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    http://support.apple.com/kb/HT1925
    or here:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/HT1923
    Best,
    David

Maybe you are looking for

  • Import file to flash Pano2VR air 3.2 for iOS ?

    Good evening. Actionscript 3.0 import flash.display.*; import flash.net.URLRequest; import flash.events.Event; var loader:Loader = new Loader(); var url:String = "panorama.swf"; var urlReq:URLRequest = new URLRequest(url); var vr:MovieClip; // panora

  • Insert Pie Chart to Excel Using OpenXml

    I managed to implement the code(I got from MSDN) to create a bar graph in excel, I am however facing challenges in creating a piechart, I had thought that I can manipulate the code a little bit and  produce a pie chart-but I have spent nights and nig

  • Flash in Director issues

    I have about 12 swfs that I need to put into a Director shell and when I do the buttons on the swfs that link to other swfs work fine but the buttons in the swfs that link to the web don't work at all (neither do the quit buttons on the swfs). I know

  • Safari 3.0.4 with upgrade to 10.4.11 wont work, please help me

    I am just beside myself. Safari wont work. I have broadband and all is well there with comcast, I've run disk warrior, all is well there. I've run disk first aid to check and verify disk. All well there. I upgraded to OS 10.4.11 from Upgrade on my g5

  • PSD with dB ON: is it 10*log(x) or log(x) ?

    The Power Spectral Density (PSD) in LabView has an option of outputing dB values. I have found that it do this: 10*log(x). I just want to confirm that this is the case in all versions of LabView (I have 8.6) because If I am to use that program in dif