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 bkrike 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

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

    EXECUTE privilege on a procedure

    Hi, in which dictionary view could i see if a role has got EXECUTE privilege on a procedure?
  8. 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
  9. RamHardikar

    JWS 2.0

    Cud anyone tell me where i can download JavawebServer 2.0 from?
  10. 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 -...
  11. 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...
  12. RamHardikar

    Charting Tools for JAVA/JSP

    Are there any free charting/graphing tools that supoort over lay graphs?
  13. 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...
  14. RamHardikar

    Handling file

    Could you point me to sites where i can have a look at file handling functions. basically i want to read binary file and convert them into text files.
  15. RamHardikar

    DataGrid column widths

    Am using a DataGrid to display data. Also, am using custom paging since i have lot of data to be shown. when i navigate thru pages the data shows up on the gird. till here i dont hv a problem. when i navigate thru pages, the DataGrid columns that are showing the data dont seems to be fixed. in...
  16. RamHardikar

    Object reference not set to an instance of an object

    Hi, Below is a function that i call to get the rowcount. When it is called for the first time it returns me the rowcount. But when i call this for the 2nd time, it fails at ExecuteScalar() line of code and throws me an error (Object reference not set to an instance of an object). Could any one...
  17. RamHardikar

    Connection Pooling

    Could someone point me to an example which shows implemention of connection pooling
  18. RamHardikar

    Which DataSet to use?

    I have DataSet on which I make all my changes and finally I use it to update the changes back in the database. I had this doubt if I should create another temporary DataSet to hold only the rows with modified rowstate and use this to update the database instead of the original DataSet. Is...
  19. RamHardikar

    Getting Rowcount in DataView

    DataSet Ds1 has undergone some updates on the column ‘Flag’. Am trying to create a DataView of only those rows which have the Flag value as ‘True’. Below is my code where i try to filter the required rows. Also am trying to get the row count of the DataView. But I always get the incorrect value...
  20. RamHardikar

    Getting a reference of a checkbox

    Is there a way to get the reference of a checkbox which sits in the header column of the DataGrid in the code behind?

Part and Inventory Search

Back
Top