Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. manohar143

    How to make a dial-up connection dial automatically

    Hi All I want any batch file to start the dial up connection automatically. If anybody having any kind of help on this. It would very helpful for me. Thanks in Advance Manohar
  2. manohar143

    SQL Server Error..Please Help

    I am Using OLE DB for Oracle (MSDAORA) for connecting to Oracle Database form SQL Server. I followed the steps given below for same: 1) Created Linked Server with sp_addlinkedserver 2)Created mapping between logins on the local server running MS SQL Server and remote logins on the linked...
  3. manohar143

    Updating Oracle Database whenever an event occured in SQLSERVER db

    Hi ALL, I have a requirment as follows: Whenever a updation or insertion occurs in My SQL-SERVER database, at the same time i have to update some tables in my ORACLE database. This has to been done REAL time intergration. I would like to have any approach to do this. If anybody have done...
  4. manohar143

    what happens when a++ is given...where does the value stores

    public class test { public static void main(String args[]) { int a=2; System.out.println("a"+a); a=a++; System.out.println("a"+a); a=++a; System.out.println("a"+a); } } Result of this program is a 2 a 2 a 3 How come the value of a is not changed...
  5. manohar143

    Is long long data type exists

    Hello Friends I wrote a small program in C main() { long long int a=0; printf("test program"); printf("\n"); printf("%u%",sizeof(a)); printf("\n"); } the above program works fine in my Dev C++ complier, actually i saved this file as .c...

Part and Inventory Search

Back
Top