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 IamaSherpa 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. MartDawg

    store value based on two columns

    I have a table column1...column2.....column3 column1 is an int column2 is an int I want to store column1/column2 in column3 and have it update each time column(1 or 2) updates. What is the best way to do this? I was thinking a trigger and a stored proc? Is there any way to store that...
  2. MartDawg

    ? on jdbc driver

    I am not very familiar with java. I'm trying to load test an oracle database with jmeter though. I keep getting an error that states "no suitable driver exists" I have downloaded ojdbc14.jar from oracles website. That doesn't seem to work. I'm a little confused. What exactly do I need to...
  3. MartDawg

    recordset problems

    I have two tables, when I join the data comes back like so... field1, field2, field3, type1 field1, field2, field3, type2 field1, field2, field3, type3 Is it possible to make the data come back like so field1, field2, field3, type1 type2 type3
  4. MartDawg

    Mapping IDs using a join?

    I have two tables, when I join them, my recordset comes back like this... field1, field2, field3 stuff, stuff, type1 stuff, stuff, type2 Is it possible instead of returning the duplicate data(field1-2)...I would like the data like this stuff, stuff, type1 , type2
  5. MartDawg

    Creating a virtual directory

    Anybody know how to create a virtual directory in Visual Basic?
  6. MartDawg

    load test SQL server

    I have a script set up with the transaction logs from a previous day. I converted that to a .sql script and ran on query analyzer, to test out performance. The only thing is, it is not apples to apples because I have only 1 connection open to the database. Is there a way to script out...
  7. MartDawg

    stupid question

    Thanks!
  8. MartDawg

    stupid question

    I have never used Visual Basic 6.0 before. I have used vbscript before. How do I concatanate a variable into a string in Visual Basic 6.0? For example... I have a fuction call where I pass in the path and an image name, The path is always the same, but the image is always a variable. 1...
  9. MartDawg

    DLLHOST

    I have a web server that all the sudden DLLHOST.EXE starts eating up all the memory on the server. Anybody have any ideas what would cause DLLHOST.EXE to all the sudden start eating up memory? Also, anybody have any ideas on how I could pinpoint the application that is causing the problem...
  10. MartDawg

    load testing citrix farm

    Any body familiar with products that load test citrix environments? So far I've looked at CitraTest and LoadRunner. I've heard people don't get the best results with LoadRunner, as it does everything through the protocol, while CitraTest emulates a real user using the application. Anyways...
  11. MartDawg

    close all iexplorer windows

    I tried a search and got no results?
  12. MartDawg

    close all iexplorer windows

    I have a script that opens up some browsers, when i'm done I need to close all the broswers. ie.quit only closes the initial broswer I opened. Not all the broswers on my screen. Is there a way to kill iexplore or close all ie windows running?
  13. MartDawg

    simulate mouse?

    thanks for the help everybody, i ended up doing something in wscript to send the enter key....
  14. MartDawg

    simulate mouse?

    I'd rather be able to simulate if at all possible.
  15. MartDawg

    simulate mouse?

    I have a vb app I am trying to stress test. I fire it off with a batch file. When the vb application ends, a message box is displayed, in order to end the application the message box must be pressed. Is there a way I can make that button be depressed, either through a seperate vb app. Maybe...
  16. MartDawg

    vbscript to launch a vbapp

    Hi, currently I have a batch file to launch a vb application, the app takes a couple parameters, so my batch file looks like the following... @ECHO OFF C: CD\a directory someapp.exe param1 "param 2" My problem is, when the app finishes executing, a message box...
  17. MartDawg

    query help

    I want a little bit more than that though. I want the userid's that occur more than once, only if they have the same datetime?
  18. MartDawg

    query help

    I get an error about having somedate not in the group by clause.
  19. MartDawg

    query help

    I have a table that looks like this... SomeTable userID(int) somedate(datetime) somethingelse(varchar) There is no unique field currently. I want to make the first two columns together the primary key(userID, somedate). When I do this I get an error for primary contraint. I relize that...

Part and Inventory Search

Back
Top