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. RamHardikar

    Reading BFILE

    Hi, I have a problem whereby i want to get a Bfile (word, excel, pdf etc) stored in an oracle database and show it on the screen. Could someone pl help me in this regard.
  2. RamHardikar

    French Character Set Problem

    Hi, My webpage has got some french names which display correctly on the screen. I also have an option to export the webpage to EXCEL. But when I do that the names (with french chars) shows up worngly, with all special chars. Am using the below code in web.config but still unable to get the...
  3. RamHardikar

    Application Monitoring

    Hi, Is there a way to write a piece of code in ASP.NET to monitor following services - 1. WWW Service to know if it is running 2. ASP.Net State Service to know if it is running 3. No of concurrent users/sessions logged on to the applicaiton Thanks, Ram
  4. RamHardikar

    Error LsaSrv

    Hi, I get the following error and my PC freezes. "LsaSrv Event ID 5000 Error Message: The Security Package Negotiate Generated an Exception". The error is logged in the event viewer. I googled on this error and found microsft help on this -'http://support.microsoft.com/kb/328948/'. It says...
  5. RamHardikar

    Concurrent Users Count

    isnt there any setting in IIS to monitor the count?
  6. RamHardikar

    Concurrent Users Count

    Hi, Is there a way to monitor concurrent users that are connected to an application hosted on IIS. I tried adding performance counter 'Current NonAnonymous Users' but it does not show correct data. Thanks, Ram
  7. RamHardikar

    Error in Trigger

    Hi, I have created a trigger as below ------------------------------------ CREATE OR REPLACE TRIGGER CREATE_INDEX AFTER INSERT OR DELETE ON PERSON FOR EACH ROW DECLARE v_id Number; BEGIN IF INSERTING = TRUE THEN update directory_index set string=substr(:New.Last_Name,1,1)...
  8. RamHardikar

    EXECUTE privilege on a procedure

    Mufasa, Thanks a lot it has helped.
  9. RamHardikar

    EXECUTE privilege on a procedure

    Hi, in which dictionary view could i see if a role has got EXECUTE privilege on a procedure?
  10. RamHardikar

    Migration

    Hi, Could someone guide me on how to proceed for migrating MS Access data (including table, indexes etc) to Oracle? What ground work needs to be done for this? What should be the approach for this? Thanks
  11. RamHardikar

    JWS 2.0

    Cud anyone tell me where i can download JavawebServer 2.0 from?
  12. RamHardikar

    File pointers

    Thanks to SamBones and Butthead. Your solutions work! For the moment I am using fgetpos and fsetpos.
  13. RamHardikar

    File pointers

    i tried giving (-)ve offset but it did not work. my OS is VAX VMS.
  14. RamHardikar

    File pointers

    how cud u move backwards using fseek? i tried but it doesnt work. appreciate if u cud give me an example
  15. RamHardikar

    File pointers

    Also, is there a way to reposition file pointer backwards? By backwards i mean 'n' bytes back and not to the beginning of file.
  16. RamHardikar

    File pointers

    After step #4 is executed, 'fp2' should be at the end of 1st record that is read. and since 'fp1' is never used it should still be pointing to the beginning of the file. but it does not work that way. what i find is though 'fp1' is not used, it too is at the end of the 1st record along with...
  17. RamHardikar

    File pointers

    1) I declare 2 file pointers - FILE *fp1, *fp2; 2) Using 'fp1' I open a file for reading in binary mode - fp1=fopen("test","rb"); 3) I use 'fp2' to point to same memory what fp1 is pointing to - fp2=fp1; 4) Using 'fp2' I read a record from the file 'test' using a structure -...
  18. RamHardikar

    Problem with temporary table in stored procedure

    Hi, I have to execute a stored procedure thru java, where the stored procedure has refcursor as out parameter and within the procedure the refcursor out parameter is populated from a temporary table. when iam trying to get the resultset in my program iam getting the oracle error: ora-08103...
  19. RamHardikar

    Charting Tools for JAVA/JSP

    Are there any free charting/graphing tools that supoort over lay graphs?
  20. RamHardikar

    Reading Structure

    Hi, I have a structure 'Employee' with attributes Name, Age and Salary. I am writing this structure for each employee in a file in binary mode. Also i am able to read structure 'Employee' from the file and display the values of Name, Age and Salary. My question is can i read individual...

Part and Inventory Search

Back
Top