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 Chriss Miller 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. balachandar

    Executing Orac;e script

    Hi, I want to delete a record from a table called File_Upload. I need to execute this sql statement from DOS prompt using a batch file. Any idea on how this can be done. The necessary user id and password will have to be passed to this bat file. Thanks and Regards Balachandar Ganesan.
  2. balachandar

    Help in PL-SQL

    Hi All, I have a table with the following details EMPID,EFFDT,EFFSEQ,JOBCODE. Now from this table, I need to find the current Jobcode and the previous jobcode for every employee using EFFDT and EFFSEQ. For example for the following rows 1000, Employee1,01-Jan-2005,1,'JobCode1' 1000...
  3. balachandar

    Foreign Key List

    Hi, Thanks for the message. I have found a way to do it.... SELECT USER_CONSTRAINTS.CONSTRAINT_NAME AS NAME, 'Referential Integrity', USER_CONS_COLUMNS.COLUMN_NAME || ' References ' || X.TABLE_NAME || '.' || Y.COLUMN_NAME FROM USER_CONSTRAINTS, USER_CONS_COLUMNS...
  4. balachandar

    Foreign Key List

    Hi, I would like to get the list of foreign keys in a table and present the information in the following format. Foreign Key Foreign Key References Referred Constraint Name Column Name Table Name Column Name How I can...
  5. balachandar

    Full Text Search.

    Hi All, The SQL Server that we use does not have FullText Search installed. How do I install it and enable it? Also let me know if we can install FullText Search on Windows NT or Windows 2000. Regards Balachandar Ganesan
  6. balachandar

    Copying Debug files

    Hi, We have a Visual C++ project. With each release,Every developer has to build the entire application in their own PCS. To avoid that we just compiled the application in one of the PCS and copied all the folders (Including Debugging information) into other developer PCs and registered all the...
  7. balachandar

    Children with more than one parent

    However , In the above schema, I will be able to add a module with out belonging to product. That should not happen. Parent child relationship still holds good. AS you can not have a module with out a parent. However there are modules which belong to more than one prouduct. I want to the track...
  8. balachandar

    Children with more than one parent

    Hi All, I am trying to design the database for a bug tracker application. This is the information I am trying to model. There are n number of products in the project. Each product has one or more modules. There are some modules that are common to more than one product. (i.e) Each module(child)...
  9. balachandar

    launching a new browser window using VC++

    Hai All, I have a activeX control application developed in VC++ running in a Internet explorer window. I need to open a given URL in a new browser window from this application. I tried the ShellExecute() function to launch a new Internet explorer window from my ActiveX appliction (from the...
  10. balachandar

    XSL-FO from ASP

    Hi, I would like to know if any one has used XSL-FO from ASP. I need to generate the PDF based on the values supplied by the user in a form. I should generate this as a PDF document using XSL-FO from ASP. Please guide me and provide me with some samples as well.
  11. balachandar

    The focus is in a control but the cursor is not visible

    Hi, I have set the Focus to an edit box and am exiting the OnInitDialog() with the return value 0. This gives the expected behaviour of setting the focus but the cursor is not visible in the edit box util the keyboard is used. I tried using ShowCursor(TRUE) multiple times but even that does...
  12. balachandar

    SINK_MAP DISPID_KEYUP

    Hi, What should be the parameters and return type for the functions implementing the handler of an DISPID_KEYUP event in a SINK_MAP? How do we handle DISPID_KEYUP event in a SINK_MAP? Thanks & Regards, Balachandar Ganesan
  13. balachandar

    Tab Order Strange Problem

    Yes. Very much Yes
  14. balachandar

    Tab Order Strange Problem

    Hi, I have a strange problem with tab order. From the first control, Instead of going to the second control, It goes to the toolbar(address bar) and if there are any other customized bars(Ex: google search bar) it goes there next, After that only control goes to the second control. I could find...
  15. balachandar

    NT to XP Migration

    Hi All, We are going to migrate applications developed in VC++ running on NT to XP. If any body has done it before please share the experience. Also please let me know if there are any documents(white papers) available for NT to XP migration.
  16. balachandar

    How to display Question Papers Online

    Hi, I am building an application for conducting tests online. I am highly confused about displaying the various questions and extracting the user answer. These are the requirements. Question Types are : Multiple Choice, True/False, Fill in the Blanks, Match the following. The questions can be...
  17. balachandar

    Making user_information accessible for all pages

    Hi All, I am new to ASP.NET. Once you a user logs into the web application, I want the following details : User Id,User_Name to be accessible in all pages. However once he closes the session, the information should be lost. What is the best strategy to achieve this functionality. Regards...
  18. balachandar

    Multiple record types from Text File

    Hi All, Thanks for the suggestions given. There is a record identifier for determining what record it is . Thanks
  19. balachandar

    Multiple record types from Text File

    Hi All, How do I handle a situation where a text file contains multiple records types . i.e if there are two records first containing customer name related details and other contains the address. I have to target two different tables based on the record type. Thanks Balachandar Ganesan
  20. balachandar

    Recovering data from the log file

    Hi, Is there any way to recover the data from the log file in Oracle 9i. Some Oracle warehouse builder related data was deleted from Oracle 9i tables. We want to recover the data from the log file. Is there any tool with which we can do it ? Thanks and Regards Balachandar Ganesan.

Part and Inventory Search

Back
Top