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: parames
  • Content: Threads
  • Order by date
  1. parames

    transfer files between two unix server

    Hi everybody, I really need ur help.. I have to HP-UX servers. How to transfer files between this two server?? There are ways to transfer but I prefer to transfer from Unix to Unix directly. What is the command?? Thanks and Best Regards, Parames.S
  2. parames

    slow processing time

    Hi list, i'm using HP Proliant server with windows 2003 OS. IIS version 6.0 and mysql version 4.17... The problem is previously, when i user normal PC as my webserver with windows 2K and mysql version 3.52, my asp sites works faster.. but, now after i change to new server, the processing time...
  3. parames

    date problem

    Hi list, previously i was using a normal PC as my webserver with this specs: windows 2000 mysql database version 3.23 myodbc driver version 2.50 Now, i've changed my server with this specs: HP ProLiant ML350G3 Server windows 2003 mysql database version 4.0.17 myodbc driver version 3.51 and also...
  4. parames

    button value

    Hi list, How to get the submit button value in javascript. For example,my code looks like this: ------------- response.write form method=post name=theform action='picking_edit2.asp' onsubmit='return chk_submit_bottom()'>&quot; ------------ response.write &quot;<tr><input type=submit name=button...
  5. parames

    date and time difference

    Greetings, I'm using mysql database. When the end user submit the form, we do keep the date and the time the form submitted. Thr problem is, at a particular time, how to calculate whether the time the form was submitted is already past 1 hour. In the other words, whenever i run a program,the...
  6. parames

    using arrays in while loop

    Hi list, I get this error message when run this script: ------- Do while Not RS.EOF dim tbl_array(5) tbl_array(0) = &quot;fg_lcb&quot; tbl_array(1) = &quot;fg_r9&quot; tbl_array(2) = &quot;pp&quot; tbl_array(3) = &quot;fg_r3a&quot; tbl_array(4) = &quot;fg_sheet&quot...
  7. parames

    NO PERMISSION

    Hi list, I'm using Windows 2000 with IIS. When i use File System Object, i get this error message: Error Type: Microsoft VBScript runtime (0x800A0046) Permission denied /mpm/wastepaper/uploadrespond.asp, line 92 line 92 = Set fsoFile = fso.CreateTextFile(fileName, True) Where is the wrong...
  8. parames

    Hi list, i'm using barcode font ty

    Hi list, i'm using barcode font type in my asp page to print out barcode label. The font type is &quot;3 of 9 Barcode&quot;. The problem is that i cannot make the label bigger. My code looks like this: response.write &quot;<center><font size='999999999999' face='3 of 9 Barcode'><b>*&quot; &...
  9. parames

    include &lt;string&gt; in c++

    Hi list, I'm using Turbo c++ version 4.5. I don't have the <string> header file. I just have <string.h> which is used for c programs. So, i couldn't run this type of programs : #include <iostream.h> #include <string> int main() { string stA = &quot;Nutcracker&quot;, stB = &quot;Sleeping...
  10. parames

    sql query

    Hello list, I'm using mySql database and i have two tables. In this two tables, there are two fields which are the same: product and serial_no.. I want to do select sql query, which get the product and serial_no from this two tables and transfer two another temp table.. Currently what i'm doing...
  11. parames

    error in sql query

    Hi list.. Set Conn = Server.CreateObject(&quot;ADODB.Connection&quot;) strDSN =&quot;DRIVER={MySQL};SERVER=150.150.1.118;DATABASE=test;UID=root;PWD=;&quot; Conn.Open strDSN Query = &quot;select DAYOFWEEK('2002-03-01') as show_day&quot; Set RS = Conn.Execute(Query) show_day =...
  12. parames

    speed in asp

    Hi list, Need to know how to customize the below code, so, that it can be faster a bit.. 1) If i run this code, it takes about 18/19 seconds to load the page. 2) And If i eliminate the Query2 (from 'start of Query2' to 'End of Query2') inside the Query Loop, it takes about 7/8 seconds.. Any...
  13. parames

    Hi list, How to use dsnless data

    Hi list, How to use dsnless database connection for mysql.Currently i'm using dsn connection and it's very very slow: Set Conn = Server.CreateObject(&quot;ADODB.Connection&quot;) Conn.open &quot;project&quot; Query = &quot;select * from product&quot; Set RS= Conn.Execute(Query) I write the...
  14. parames

    getrows

    hi list..really need your help... I wanted to select 10 recently added product_code to be displayed out. Query = &quot;select no,product_code from fg_lcb order by no desc&quot; Set RS=Conn.Execute(Query) alldata = RS.GetRows() numcols=ubound(alldata,1) numrows=ubound(alldata,2) FOR...
  15. parames

    reading file names

    Greetings, Is it possible to read all the file names under a directory and write the file names to the database...If it is possible, can anyone guide me how to do that... Thanks a lot.. Best Regards, Parames.S
  16. parames

    Root directory full

    Hi.. I'm really facing a big problem.. hope you guys can help me... My root directory which is &quot;/&quot; is full... This directory is actually under different hard disk(vg00) and i just installed new hard disk (vg05).. What i wanted to do is, i want to add in space to root directory using...
  17. parames

    Root directory full

    Hi... I'm having a big problem.Hope you'll can help me.. My root directory which is &quot;/&quot; is full... This directory is actually under different hard disk(vg00) and i just installed new hard disk (vg05).. What i wanted to do is, i want to add in space to root directory using new hard...
  18. parames

    fixed length txt file

    Hello List, I want to transfer the data from my database to a .txt file using asp. How to transfer the data in 'fixed width' method.. Please help.. Thanks a lot.. rgds, Parames.s
  19. parames

    decimal value conversion

    Hi List, I'm using Mysql database. One of the field stores number with 5 decimal points. For example, 125.00252. How to display this field value with 3 decimal point value?? ex: the above number should be displayed, 125.003. (without changing the database value) Please help.. thanks a lot...
  20. parames

    MS-SQL Connection

    Hello list.. How to connect to a sql-server using odbc connectivity in asp.. My web pages(asp pages) are in different server..and my database is in sql server... normally we will do something like this.. set oConn = Server.CreateObject(&quot;ADODB.Connection&quot;) oConn.open...

Part and Inventory Search

Back
Top