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 TouchToneTommy 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: *

  • Users: cheguvera
  • Content: Threads
  • Order by date
  1. cheguvera

    Removing first and last line of text file

    Hi All, My requirement is, I want to remove first and last line of a text file. I did it like, ################################################### open READ_FILE ; # This is file I am reading open WRITE_FILE ; # This is file I am writting $cur_lino = 0 ; $prev_lino = 0 ; $prev_line = "" ...
  2. cheguvera

    Internet connection (conceptual) issue with broadband

    Hi All, I have an issue with my broadband connection. I am in UK and is using broadband internet from my cable operator NTL. The cable comes out of the cable box, goes into the cable modem and that is connected to my Win98 PC on USB port. This all worked fine till recently, but 2 days back my...
  3. cheguvera

    How can I do this compare using XSLT ??

    Hi all, I have a XML like , <info> <type>A</type> <value1>ZZZZZZZ</value1> <value2>YYYYYYY</value2> </info> <info> <type>B</type> <value1>ZZZZZZZ</value1> <value2>YYYYYYY</value2> </info> With XSLT I would like to code logic like, if value of <type> is 'A' then...
  4. cheguvera

    Can I hide the process appearance ?

    Hi, A security related question on Solaris. Suppose I am running some command on command line e.g. java -v -user xyz -file filename.ext Now, while this command is running, some other user logs on to the same machine and he gives command like "ps -aef" or "ps -fu some_username", he can see...
  5. cheguvera

    Issue with the &quot;system&quot; command

    Hi All, I have a question about the system command. If I run some OS command from Perl script like , system("java -user ABCD -pass XYZ -deb") ; The command I am running will execute, thats fine. But while the command is running, if some other user on the Unix box gives command like "ps...
  6. cheguvera

    sed issues on Solaris, search/replace not working

    Hi, I am on Sun Solaris and struggling with a very simple sed command. I want to search and replace, ignoring the case. Lets say, I have a file, Abcd abCd abcD And I issue a command, sed -e 's/abcd/CORRECT/i' my_file This should give output like, CORRECT CORRECT CORRECT But, my above sed...
  7. cheguvera

    Where is this object? I cannot find it

    Hi, I am working on a Access 2000 project developed by somebody else. There are some forms which I am trying to study. What I have to find is on which table/query the form(s) is based? I am going to the form's design mode and click the "Field List" button on the tool bar. I can see the list of...
  8. cheguvera

    Using Tomcat for production, licensing issues

    Hi all, I work for a small business. We are around 5 to 10 people in the office. I want to build a small application which we all can access in office, over network. Can I use Tomcat for this purpose? Technically, Yes, I know its a http server along with application server, so I can use it to...
  9. cheguvera

    Can I just copy a report instead of whole MDB file

    Hi, I am new to Access and stuck with a problem. My concept of Access database is, there is one MDB file which hold everything i.e. tables, data, forms, reports, queries etc. I am changing an existing MDB file. I have taken a copy of the original one and added one report to it. But in the...
  10. cheguvera

    Why can't I add sub-partition to range-list sub partitioned table?

    Hi, I am on Oracle 10.1 on Solaris. I have a range-list subpartitioned table. I want to add a subpartition to all partitions. But Oracle do not allow that to me, because I have a subpartition of DEFAULT value. I tried few options to do that, as shown below. CREATE TABLE REP_1 ( PARTITION_KEY...
  11. cheguvera

    How to copy statistics of one partition for another ??

    Hi, I have a partitioned table (Oracle 9.2). We will be creating new partitions for increasing data and I would like to copy the statistics of the existing partition for the newly created partition. Whats the best way to do this? Regards
  12. cheguvera

    Query about connecting Computers

    Hi Guys, I am not a hardware/networking person, so have one elementary question. I have 3-4 computers at home. One P4 PC with Redhat Linux and databases on it. One XP Professional Laptop, one old PC with Win ME. If I want to connect these computers, so that VB/Java from the Win-ME PCs can see...
  13. cheguvera

    Why index is used? It should not be

    Hi, I am on Oracle 9.2 on HP Unix and getting more confused about the optimizer. Please have a look at following steps I performed, -- ----- Created empty table --------- SQL> create table r1 as select * from all_objects where 1=2 ; Table created. SQL> select count(*) from r1 ; COUNT(*)...
  14. cheguvera

    Any special issues in 8i to 10g migration?

    Hi all, We are planning to migrate from O8i to O10g. Anybody has gone thru this process? What are the main issues? problems? I am more concerned about deplicated features. Something which works in 8i but not in 10g? Please share your experiances. It may be theory, syntax, anything.... Regards
  15. cheguvera

    Can I have my computer on Internet as server?

    Hi, I have a computer and broadband internet (as we call it in UK) at home. This broadband is provided by my local Cable TV operator. If I have a database (say Oracle or MySQL) on my PC and a J2EE application running with it, is it possible that other people on internet can look at that...
  16. cheguvera

    Whats the best way for 2 databases on same machine to talk

    Hi, Generally when we want 2 Oracle databases to talk, we create database link. When we access some object over a DB link, its a TNS connection. Means, even if both the databases are on the same machine (Unix), we use the listener to communicate, which is normally a TCP socket connection. Is...
  17. cheguvera

    Does external table creation creates REDO log ?

    Hi all, I am on Oracle 10.1 on Solaris, but my question is generic. I am creating an external table from a CSV text file. In the process of creating and reading (using) this external table any REDO information will be generated? Till 8i, for loading CSV files, I would load the file with...

Part and Inventory Search

Back
Top