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 strongm 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. ryan101

    Import data from one table to another using exp/imp

    I have a dmp file that's a full export of my database from a few days ago. One of our devs wants the data contained in that export from table X. The tricky part is that he doesn't want to overwrite the current table X with the old data, he wants a new table (Y) created with the same data from...
  2. ryan101

    keep bg process alive on logout

    Anyone know if it's possible to bg a process and keep it running even after logout? I've tried nohup, but it's an irc client so I need to interact when I bring it into the foreground. Ideally I'd like to be able to ssh into my server, launch the program and when I'm ready to log out, Ctrl-Z...
  3. ryan101

    Top XX list based on how many rows contain XX

    answer dawned on me a while after I submitted. If anyone's interested, the command I used that works is: SELECT LOCATION, TIMES FROM( SELECT LOCATION, COUNT(LOCATION) TIMES FROM TABLE_NAME GROUP BY LOCATION ORDER BY TIMES DESC ) WHERE ROWNUM < 6
  4. ryan101

    Top XX list based on how many rows contain XX

    I have a table with the following 3 columns: Ticket_Number, Location, date_created I need to return a top 3 list that contains the locations sorted by the count of each location. For instance, say I have 10 rows total. 4 rows have &quot;Main Office&quot; for location, 3 have &quot;Satellite...
  5. ryan101

    Parsing a String into Time Format

    I've got strings of numbers like: a = 4 b = 416 c = 723 d = 1534 I want to be able to convert these numbers into time format so that a = 12:04am b = 4:16am c = 7:23am d = 3:34pm Anyone know of a quick and painless method?
  6. ryan101

    Sending information to a SQL Server

    A simple insert command that I use: set ad = CreateObject(&quot;ADODB.Connection&quot;) strConnect = &quot;Provider=SQLOLEDB;Server=169.254.1.1;database=testdatabase;uid=dbaseuser&quot; ad.Open strConnect form1 = Request.Form(&quot;field1&quot;) form2 = Request.Form(&quot;field2&quot;) form3 =...
  7. ryan101

    path not found accessing FileSystemObject with UNC

    I'm having trouble accessing a file with the Scripting.FileSystemObject. The following works great: Set fs = Server.CreateObject(&quot;Scripting.FileSystemObject&quot;) Set folder = fs.GetFolder(&quot;E:\webfiles\directory&quot;) However, when I try to use the UNC, I get a path not found...
  8. ryan101

    using loops to navigate through trees

    I need to call multiple trees in an xml document. set branch1 = tree.item(0).childNodes set branch2 = tree.item(1).childNodes ...etc... This works just fine. But what I need is to have a loop that does something like this. for x = 0 to something.length set branch = tree.item(x).childNodes do...
  9. ryan101

    evaluating expression with an object

    I need to call multiple trees in an xml document. The call for a single tree is simple. I just define tree as an object that points to the document and... set branch1 = tree.item(0).childNodes set branch2 = tree.item(1).childNodes ...etc... I need to have a loop that does something like...
  10. ryan101

    index.asp getting changed to .html when publishing

    I currently have a setup where we use a demo and a live site. We make changes to the demo site and publish to the live site. Our home page is an active server page. The issue I'm having occurs when I publish the demo site to the live site, it takes my index.asp and publishes it as index.html...
  11. ryan101

    specifying permissions for a single file

    I'm trying to update a file contained within a website. Right now, only those with author permission on the entire site can update this file. (It's updated through a web form and asp/xml) Is there any way in Frontpage to specify read/write permissions to this particular file; or should I try...
  12. ryan101

    Can't save to xml file

    I'm getting some kind of access restrictions when trying to update an xml file. The following code works fine. It will read in the file and I can display and manipulate the data: <% Set xmlDoc = Server.CreateObject(&quot;Microsoft.XMLDOM&quot;) xmlDoc.async = false xmlDoc.load...
  13. ryan101

    Editing text inside xml file using javascript and web forms

    I have an xml database that contains the contact info for employees. I've written an interface that displays this info according to different groups, but now I'd like to be able to have each user edit their own info. I've created a form who's different fields display the corresponding user's...

Part and Inventory Search

Back
Top