Where does the password for Elgamal algorithm is stored

hi,
i am doing a project in Intelligent security in java using Elagamal algorithm. The feature of Elgamal is that the password is not stored in database . Then where is the password is stored to check for a existing user .
If i am an existing user then when i type the username and password then it should check or compare and tell that password is right or wrong . so where is the password is stored to compare ?? please give me the coding in java .
i need the coding immediately , of how to get the password and to store and then to compare where the user is correct else message should display "type the correct password".
Given below is my Main window coding plz help me where to include the coding,
     This simple extension of the java.awt.Frame class
     contains all the elements necessary to act as the
     main window of an application.
// LOGIN WINDOW ( FIRST WINDOW ) FOR LOGIN AND EXISTING USER
import java.awt.*;
import java.io.*;
import java.net.*;
import java.util.*;
import java.sql.*;
import java.math.*;
import java.security.*;
import java.io.IOException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
public class Smart extends Frame
     public Smart()
          // This code is automatically generated by Visual Cafe when you add
          // components to the visual environment. It instantiates and initializes
          // the components. To modify the code, only use code syntax that matches
          // what Visual Cafe can generate, or Visual Cafe may be unable to back
          // parse your Java file into its visual environment.
          //{{INIT_CONTROLS
          setLayout(null);
          setBackground(new java.awt.Color(255,247,192));
          setSize(1200,900);
// 157,135,178
          setVisible(false);
          label1.setText("USERID");
          add(label1);
          label1.setFont(new Font("Dialog", Font.PLAIN, 14));
          label1.setBounds(315,180,84,48);
          label2.setText("PASSWORD");
          add(label2);
          label2.setFont(new Font("Dialog", Font.PLAIN, 14));
          label2.setBounds(315,260,100,40);
          textField1.setBounds(430,180,216,36);
          //textField1.setBackground(new java.awt.Color(196,197,233));//textfieldcolor
          add(textField1);
          textField2.setEchoChar('*');
          //textField2.setBackground(new java.awt.Color(196,197,233));
          add(textField2);
          textField2.setBounds(430,260,213,36);
          button1.setLabel("SUBMIT");
          add(button1);
          button1.setBackground(new java.awt.Color(196,197,233));
          button1.setBounds(320,360,120,40);
          button2.setLabel("CLEAR");
          add(button2);
          button2.setBackground(new java.awt.Color(196,197,233));
          button2.setBounds(520,360,120,40);
          label3.setText("REGISTRATION FORM");
          add(label3);
          label3.setFont(new Font("Dialog", Font.BOLD, 20));
          label3.setBounds(324,54,550,80);
          button3.setLabel("NEW USER REGISTRATION");
          add(button3);
          button3.setBackground(new java.awt.Color(196,197,233));
          button3.setBounds(369,450,232,40);
          //add(textArea1);
          //textArea1.setBounds(0,360,576,52);
          setTitle("LOGIN PHASE Application");
          /*int mStrength = 16;
          SecureRandom mSecureRandom = new SecureRandom();
          p = new BigInteger(mStrength, 16, mSecureRandom);*/
          //{{INIT_MENUS
          //{{REGISTER_LISTENERS
          SymWindow aSymWindow = new SymWindow();
          this.addWindowListener(aSymWindow);
          SymAction lSymAction = new SymAction();
          button1.addActionListener(lSymAction);
          button2.addActionListener(lSymAction);
          button3.addActionListener(lSymAction);
     public Smart(String title)
          this();
          setTitle(title);
* Shows or hides the component depending on the boolean flag b.
* @param b if true, show the component; otherwise, hide the component.
* @see java.awt.Component#isVisible
public void setVisible(boolean b)
          if(b)
          setLocation(50, 50);
          super.setVisible(b);
     public static void main(String args[])
     try
               //Create a new instance of our application's frame, and make it visible.
          (new Smart()).setVisible(true);
          catch (Throwable t)
               System.err.println(t);
               t.printStackTrace();
               // Ensure the application exits with an error condition.
               System.exit(1);
          public void addNotify()
          // Record the size of the window prior to calling parents addNotify.
          Dimension d = getSize();
          super.addNotify();
          if (fComponentsAdjusted)
               return;
          // Adjust components according to the insets
          setSize(getInsets().left + getInsets().right + d.width, getInsets().top + getInsets().bottom + d.height);
          Component components[] = getComponents();
          for (int i = 0; i < components.length; i++)
               Point p = components.getLocation();
               p.translate(getInsets().left, getInsets().top);
               components[i].setLocation(p);
          fComponentsAdjusted = true;
     // Used for addNotify check.
     boolean fComponentsAdjusted = false;
     //{{DECLARE_CONTROLS
     java.awt.Button button1 = new java.awt.Button();
     java.awt.Button button2 = new java.awt.Button();
     java.awt.Label label1 = new java.awt.Label();
     java.awt.Label label2 = new java.awt.Label();
     java.awt.Label label3 = new java.awt.Label();
     java.awt.Button button3 = new java.awt.Button();
     java.awt.TextField textField1 = new java.awt.TextField();
     java.awt.TextField textField2 = new java.awt.TextField();
     java.awt.TextArea textArea1 = new java.awt.TextArea();
     //BigInteger p;
     //{{DECLARE_MENUS
     class SymWindow extends java.awt.event.WindowAdapter
          public void windowClosing(java.awt.event.WindowEvent event)
               Object object = event.getSource();
               if (object == Smart.this)
                    Smart_WindowClosing(event);
     void Smart_WindowClosing(java.awt.event.WindowEvent event)
          System.exit(0);
     class SymAction implements java.awt.event.ActionListener
          public void actionPerformed(java.awt.event.ActionEvent event)
               Object object = event.getSource();
               if (object == button1)
                    button1_ActionPerformed(event);
               else if (object == button2)
                    button2_ActionPerformed(event);
               else if (object == button3)
                    button3_ActionPerformed(event);
     void button1_ActionPerformed(java.awt.event.ActionEvent event)
          //try{
          String ids = textField1.getText();
          String pss = textField2.getText();
          byte [] bt = ids.getBytes();
          BigInteger id = new BigInteger(bt);
          //by samy byte [] bts = pss.getBytes();
          //BigInteger ps = new BigInteger(bts);
     int mStrength = 16;
     SecureRandom mSecureRandom = new SecureRandom();
     BigInteger p = new BigInteger(mStrength, 16, mSecureRandom);
     System.out.println("p = "+p.toString(16));
     BigInteger g = new BigInteger(mStrength - 1, mSecureRandom);
     System.out.println("g= "+g.toString(16));
     BigInteger x = new BigInteger(mStrength - 1, mSecureRandom);
     System.out.println("x="+x.toString(16));
     //byte[] bt = id.getBytes();
     BigInteger idb = new BigInteger(bt);
     //System.out.println("id= "+idb.toString(16));
     BigInteger ps = idb.modPow(x, p);
     //String pw = new String("pass = "+ps.toByteArray());
     System.out.println("ps ="+ps.toString(16));
     BigInteger r =null;
BigInteger ONE = BigInteger.valueOf(1L);
BigInteger p_1 = p.subtract(ONE);
SecureRandom sr = new SecureRandom();
do {
r = new BigInteger(p.bitLength(), sr);
} while (r.compareTo(ONE) <= 0 || r.compareTo(p_1) >= 0);
     System.out.println("r= "+r.toString(16));
     BigInteger c1 =idb.modPow(r,p);
     System.out.println("c1= "+c1.toString(16));
     long time = System.currentTimeMillis();
     System.out.println("TIME ="+time);
     BigInteger one = new BigInteger( new Integer(1).toString());
     BigInteger T = new BigInteger( new Long(time).toString());
     BigInteger t =T.xor(ps);
     BigInteger t1 = t.mod(p.subtract(one));
     System.out.println("t="+t1.toString(16));
     BigInteger M = idb.modPow(t1, p);
     System.out.println("M="+M.toString(16));
     int rnd = r.intValue();
     BigInteger c2 =ps.modPow(r,p).multiply(M).mod(p);
     System.out.println("c2 ="+c2.toString(16));
     //(bia[0].modPow(a, p).modInverse(p)).multiply(bia[1]).mod(p);
     BigInteger val1 = (c1.modPow(x,p).modInverse(p)).multiply(c2).mod(p);
     BigInteger val2 = id.modPow(t1,p);
     System.out.println(val1.toString(16));
     System.out.println(val2.toString(16));
send s=new send();
// }catch( IOException e){
//System.out.println("Exception caught ") ; }     
//     catch( Exception e){
//System.out.println("Exception caught ") ; }               
     void button2_ActionPerformed(java.awt.event.ActionEvent event)
          textField1.setText("");
          textField2.setText("");
     void button3_ActionPerformed(java.awt.event.ActionEvent event)
     {   Security s1 = null;
          try
System.out.println("this is in Smart ");
     //Create a new instance of our application's frame, and make it visible.
          s1 = new Security();
          s1.setVisible(true);
          catch (Throwable t)
               System.err.println(t);
               t.printStackTrace();
               //Ensure the application exits with an error condition.
               System.exit(1);
          //s1.dispose();     

I was picking that up from your error message
..jsp_servlet\__savename.java:17: package com.company.project.ejb does not exist import com.company.project.ejb.UserData; //[ /SaveName.jsp; Line: 1]
The folder structure needs to mirror the package structure exactly (standard java)
So yes, If you have a com.company.project.ejb package with a class UserData within it
"UserData.class" needs to be in folder "WEB-INF/classes/com/project/ejb/"
If you don't have that class, then check your import statement - its asking for it.
Good luck,
evnafets

Similar Messages

  • Where is the password for user SDM stored in sap system?

    Hi SAP Gurus,
    We recently changed the password of the user j2ee_admin in our dual stack system where our UME is ABAP.
    Now, we have made changes in the su01 and configtool but after the system restart, the user id j2ee_admin is getting intermittently locked.
    On starting the the JSPM/SDM, we found it still uses the old password so wanted to know that from where does the user SDM picks up the password and starts.
    Searched few blogs and found that it reads from secstore of configtool. Could you please help.
    Regards,
    Himanshu

    Hi Himanshu,
    SDM uses encrypted administrator credentials stored which are stored secure store to use deploy service.
    If you have changed the password, updated in secure store and is correct, the you should be able to logon to VA.
    If not, then
    Goto /usr/sap/SID/DVEMBGSXX/SDM/program/config and open sdmrepository.sdc file to see the values of SecStore.properties and SecStore.Key are pointing to correct path. You can verify this from configtool or config.properties in configtool folder.
    If you are not able to save this password in configtool, then refer 1228507 - Config Tool does not properly save password in Secure Store
    Regards,
    Divyanshu

  • Where does the jar for a custom tag libary need to go?

    I am having trouble getting a custom tag library's classes found. These are located
    in a jar file called blazix.jar.
    I have the following GetName.jsp:
    <%@ taglib prefix="blx" uri="/blx.tld" %>
    <jsp:directive.page import="com.company.project.ejb.UserData"/>
    <jsp:useBean id="user" class="UserData" scope="session"/>
    <HTML>
         <BODY>
              <blx:getProperty name="user" property="*">
              <FORM METHOD=POST ACTION="SaveName.jsp">
                   What's your name? <INPUT TYPE=TEXT NAME=username SIZE=20><BR>
                   What's your e-mail address? <INPUT TYPE=TEXT NAME=email SIZE=20><BR>
                   What's your age? <INPUT TYPE=TEXT NAME=age SIZE=4>
                   <P><INPUT TYPE=SUBMIT>
              </FORM>
              </blx:getProperty>
         </BODY>
    </HTML>
    When I run this, I get the following:
    Parsing of JSP File '/GetName.jsp' failed:
    /GetName.jsp(1): Error in using tag library uri='/blx.tld' prefix='blx': cannot
    find tag class: 'desisoft.jsp.tagext.SetProp'
    probably occurred due to an error in /GetName.jsp line 1:
    <%@ taglib prefix="blx" uri="/blx.tld" %>
    The jar does contain the needed class (desisoft.jsp.tagext.SetProp), but how can
    I tell WebLogic where to find it?
    In other words, what directory does the blazix.jar need to go under? I tried
    adding it to my classpath but that did not help.
    Thanks!

    I got it. Just needed to add my own lib directory under WEB-INF and copy the jar
    to it.
    Question though, why wouldn't this get generated for me? Would think it would
    be a common thing to need.
    "Darrin" <[email protected]> wrote:
    >
    BTW,
    I placed the blx.tld file under the WEB-INF directory. It seems to find
    it OK
    there at least.
    "Darrin" <[email protected]> wrote:
    I am having trouble getting a custom tag library's classes found. These
    are located
    in a jar file called blazix.jar.
    I have the following GetName.jsp:
    <%@ taglib prefix="blx" uri="/blx.tld" %>
    <jsp:directive.page import="com.company.project.ejb.UserData"/>
    <jsp:useBean id="user" class="UserData" scope="session"/>
    <HTML>
         <BODY>
              <blx:getProperty name="user" property="*">
              <FORM METHOD=POST ACTION="SaveName.jsp">
                   What's your name? <INPUT TYPE=TEXT NAME=username SIZE=20><BR>
                   What's your e-mail address? <INPUT TYPE=TEXT NAME=email SIZE=20><BR>
                   What's your age? <INPUT TYPE=TEXT NAME=age SIZE=4>
                   <P><INPUT TYPE=SUBMIT>
              </FORM>
              </blx:getProperty>
         </BODY>
    </HTML>
    When I run this, I get the following:
    Parsing of JSP File '/GetName.jsp' failed:
    /GetName.jsp(1): Error in using tag library uri='/blx.tld' prefix='blx':
    cannot
    find tag class: 'desisoft.jsp.tagext.SetProp'
    probably occurred due to an error in /GetName.jsp line 1:
    <%@ taglib prefix="blx" uri="/blx.tld" %>
    The jar does contain the needed class (desisoft.jsp.tagext.SetProp),
    but how can
    I tell WebLogic where to find it?
    In other words, what directory does the blazix.jar need to go under?
    I tried
    adding it to my classpath but that did not help.
    Thanks!

  • Where does the class for useBean go?

    I'm having trouble in jsp when I try to do a useBean. WebLogic can't seem to find my class. Where should the bean that I am trying to use go, and how should I refer to it in the .jsp file that needs to use it? Do I need to import the bean class?
    I have the following structure:
    proj_home
    '-->all .jsp and html files
    '---->Classes
    '------->com
    '----------->company
    '-------------->project
    '----------------->all class files for the project
    '---->src
    '------->com
    '----------->company
    '-------------->project
    '--------------->all source files for the project
    '---->WEB-INF
    Currently the bean is named UserData. It is in package com.company.project.
    I tried placing the UserData.class file everywhere I could think of but that didn't help.
    I then tried to import it into the bean that uses it like this:
    <jsp:directive.page import="com.company.project.UserData"/>
    But that gives me errors saying this:
    ...jsp_servlet\__savename.java:17: package com.company.project.ejb does not exist import com.company.project.ejb.UserData; //[ /SaveName.jsp; Line: 1]
    Well it does exist, but under the CLASSES directory.
    HELP!

    I was picking that up from your error message
    ..jsp_servlet\__savename.java:17: package com.company.project.ejb does not exist import com.company.project.ejb.UserData; //[ /SaveName.jsp; Line: 1]
    The folder structure needs to mirror the package structure exactly (standard java)
    So yes, If you have a com.company.project.ejb package with a class UserData within it
    "UserData.class" needs to be in folder "WEB-INF/classes/com/project/ejb/"
    If you don't have that class, then check your import statement - its asking for it.
    Good luck,
    evnafets

  • Where is the password for access to the MyPHP Admin logon used?

    Iam a newbie to development of a .php application, so I have been using lots of tutorials and help from this forum.  I used David Powers' tutorial on installing and using XAMPP, and eventually had everything working on my desktop, and in preview.  I am using a pre-defined database (of user and password) that I create in MySQL to determine which page to display to a user.  After doing all of my development work, I upload to my remote server and immediately got errors when trying to validate the login.  Contact with my host informs me that my data base on the server is protected by a user name and password of their definition.  I was given this info 3 years ago when I first started using them, but I'd long since lost that e-mail. 
    I've now got a situation where my database has one id and password, and my site is requiring another.  I believe that I should have had my site's info before setting up the MyPHP Admin.  At this point, should I re-load MyPHP Admin and use the id and password from my host?

    If i understood you well, the php script can't connect to the database, right?
    You need to match the access data in the php script, with the user and password from the database.
    So, first:
    If you are running your site in a hosting with CPanel, you can create the database and the user to that database without entering in phpMyAdmin
    Then, you need to change the username, database name and password in your php script, to match the real values (in your webhosting)
    That information is stored in /Connections/YourDBConnection.php
    If you need to get inside phpMyAdmin, contact your hosting provider for a solution, like a password reset. With that password, you can do the step 1 inside from phpMyAdmin (in case you haven't CPanel on your webhosting). And after that, change the values in /Connections/YourDBConnection.php to match them.
    Cheers!

  • Where does the Services for Object (GOS) store data?

    I have a requirement that I need to upload a Blocking Reason document for any blocked vendor.
    The normal process we follow for blocking is XK02->Extras-> Blocked Data or XK05.
    We want to check before the Vendor is saved with blocked data whether he/she (who is blocking the vendor) has uploaded the Blocking Reason Document .
    I found out that we have an option in Vendor screen for uploading a document under 'Services for Object' in XK02 as shown in the below (in the red box).
    After uploading the attachment it will show the uploaded document in the Attachment List as shown below.
    I don't know where this entry is stored. I checked in the table SOOD (SAPoffice: Object definition), but there is no entry in there.
    I would like to know on how to check whether the file has been uploaded at the time of saving the vendor.
    If anyone knows the table in which this data is stored, kindly point it out.
    Thank You,
    Sreejith Babu.

    Hi Sreehith,
    Please refer the following document: http://wiki.scn.sap.com/wiki/x/yIEEBQ
    These attachments can be downloaded using FM BDS_GOS_CONNECTIONS_GET
    Refer the following document: Printing or Downloading Service For Object Attachments to local desktop
    Regards,
    Vijay

  • Where is the hyphen (-) on the apple TV?  I am trying to set up my network and there is a hyphen in the password for the network

    Where is the hyphen on the apple TV?  I am trying to set up my network and there is a hyphen in the password for the network

    A few options to try:
    They hyphen should be next to the + on the character map.
    If you are still having issues, provided your ATV software is up to date, you can now connect an Apple Wireless Keyboard through bluetooth connections.
    Change your network password so it does not use a hyphen
    Good luck!

  • HT4539 Does any one know how to reset the password for the audio account?

    I havent downloaded a book in a few years and i forgot the password for the Audio Account does any one know how to change the password? This is driving me crazy.

    Welcome to the Apple community.
    The password for your Apple ID is the same for all apple services, if you have forgotten it, you can reset it at the website iForgot.com

  • Where does the magnet go for the reed switch? (i found the magnet after . .

    My hinges had broken on the display so I replaced the display.
    After putting back the unit together I found a magnet ?
    The unit was going to sleep with the screen open.
    I assume this is for the reed switch, where does the magnet go?
    in the computer?
    I found reference to the 12" ibook G4 1.2ghz with the reed switch under "end" key and the magnet in the screen. However I found the sensor "reed switch" in my screen in the right upper side.

    I found it.
    Message was edited by: Patrick Bagdasarian

  • I get the following message every time I open my contacts on my iphone or iPad : "Password Incorrect. Enter the password for the Exchange account "Exchange"". If I enter my password, it does not accept it. I don't even know what it means.

    I get the following message every time I open my contacts on my iphone or iPad : "Password Incorrect. Enter the password for the Exchange account "Exchange"". If I enter my password, it does not accept it. I don't even know what this means.

    http://support.apple.com/kb/ht1212

  • I have  an iphon 4 got the new ios 7 and I need to redo my icloud but I dont have the password for it and apple does not have the infromation form the old account what should I do to turn off find my iphone

    I have  an iphon 4 got the new ios 7 and I need to redo my icloud but I dont have the password for it and apple does not have the infromation form the old account what should I do to turn off find my iphone

    To to http://iforgot.apple.com and sign in with your iCloud ID. A new password will be sent to the associated email address.
    It this doesn't work, go to https://getsupport.apple.com ; click 'More Products and Services, then 'Apple ID', then 'Other Apple ID Topics' then 'Lost or forgotten Apple ID password'.

  • TS3276 I just upgraded to 10.8.2 and Mail is having a problem. It won't remember my password for getting mail; but it does remember the password for sending mail, i.e., smtp. Does anyone know of a fix?

    I just upgraded to 10.8.2 and Mail is having a problem. It won't remember my password for getting mail; but it does remember the password for sending mail, i.e., smtp. Does anyone know of a fix?

    The solution surprised even me, and we've been using Macs since 1984 (still have an original 128K).
    I contacted Apple support, and because we had just upgraded yesterday, clicked on the "exception" button as opposed to paying the $19.99 one-time support fee. An Apple tech called and the problem was solved in two minutes.
    Somehow during the installation of OS 10.8.2 (over 10.6.x) the key chain data for my email ISP login password got corrupted. The solution was to delete both the POP mail and SMTP entries in my keychain.
    Back to Mail, it asked for the POP password, I entered it and bingo, mail got busy downloading. Interestingly, the password was also entered into the SMTP panel.
    So, that's it. Thanks for you response, Mr. Hoffman, and regards.

  • Where does one search for ALL the APPS that are available?

    Where does one search for All the apps that are available ?

    If you don't see any messages, not have anti-malware running or the Firewall on, try installing the Mac OS X 10.6.8 Update Combo
    It's ok to do this even though you are already running v10.6.8 (according to your profile).
    Restart your Mac after the combo in installed, try the App Store.
    Also... if you have an app called Little Snitch installed, that can prevent a connection to the App Store.

  • Just bought an ipad mini.  It recognizes my internet connection but doesn't connect.  It shows a lock.  How do I get to where I enter the password for my connection?

    Just bought an ipad mini.  Trying to set up internet connection.  It recognizes my connection but will not load.  There is a padlock shown.  How do I get to where I need to enter the password for my connection?

    On your router/modem, there will be a Wi-Fi password. If you enter that into your iPad for your connection, then your iPad will have permission to connect to that access point and then you will be able to use your internet.

  • What does the password stored in the JAGENT wallet do, and what JAVA_HOME should I use for the pw_agent_util.sh command?

    I am configuring the GoldenGate Plugin for OEM. There is a step to create the wallet. The documentation is not clear about the role of the password supplied. If I run the JAGENT as oracle user, should it match the password for the oracle user, or is this password separate? Also, should I use the OEM agent jdk for the JAVA_HOME setting?
    ./pw_agent_util.sh -jagentonly

    Pat,
    Morning.  Good to see that someone is working on using the plug-in for GoldenGate within OEM12c.
    If you are using the plug-in 12.1.0.2, you will be much better off with reporting on GoldenGate processes.  In order to get the 12.1.0.2 plug-in to work, the JAgent 12.1.3.0 is needed and can be downloaded in the Oracle GoldenGate Monitor distribution (Configuring Oracle #GoldenGate Monitor Agent | DBASolved) .  If you are using the old plug-in 12.1.0.1, then the JAgent is embedded with the GoldenGate software (Oracle GoldenGAte (11.2.1.0.1 and later) and Oracle Enterprise Manager 12c | DBASolved).  I recommend taking the new plug-in!
    Now to address you question about the password. The password is stored in the wallet under the GoldenGate home ($OGG_HOME/dirwlt) and is used directly for the JAgent to login to the EMAgent and communicate with OEM.  The user name associated the password is configured in the $JAGENT_HOME (different depending on version, look for Config.properties).  Then in OEM, the username defined in Config.properties and the password in the wallet needs to be provided before OEM will pick up the GoldenGate targets.
    The $JAVA_HOME setting depends on the version of JAgent you are going to run.  The JAgent 12.1.3.0 using JDK 1.7 or higher.  The embedded JAgent using JDK 1.6. 
    Thanks
    Bobby

Maybe you are looking for

  • Same Query returning different result (Different execution plan)

    Hi all, To day i have discovered a strange thing: a query that return a different result when using a different execution plan. The query : SELECT  *   FROM schema.table@database a WHERE     column1 IN ('3')        AND column2 = '101'        AND EXIS

  • Tomcat 7 and Oracle 11g

    Hello Everyone, I am facing a strange issue with tomcat 7 connectivity with Oracle 11g. I am using the below versions JDK1.7.0_03 Tomcat 7 Oracle 11g I used to connect to oracle9 with the thin driver, everything was fine, but when I try to connect to

  • Home Videos on atv....

    Hello all, I have been using my mac for over a year now and still feel quite "newbish" about it. Any way I want to play my home videos on my 55" hdtv. Now all of the files have been converted via HB to appletv requirements. My question is do all movi

  • Can we create Named instance without installing Default instance

    Hi experts, i'm new for sql dba, Can we create Named instance without installing Default instance Thanks in advance. Regards, Madhu

  • Terminal responding slow

    * Problem:   * terminal commands respond sometimes slow, sometimes ok * Enviroment:   * desktop + session: openbox, openbox-session   * used terminals: terminal, sakura   * echo $TERM outputs: xterm ( i've googled around and i think thats allright, r