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: MartDawg
  • Content: Threads
  • Order by date
  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

    Creating a virtual directory

    Anybody know how to create a virtual directory in Visual Basic?
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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?
  10. 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...
  11. 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...
  12. 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...
  13. MartDawg

    checkbox

    I have one checkbox in a form <input type='checkbox' name='sched' id='sched' value='60'> my validate function is as follows function validate() { var size = form_1.sched.length; //alert(size) var returnval = false for (i = 0; i < size; i++) { if (form_1.sched[i].checked) { returnval...
  14. MartDawg

    scheduling query

    I'm writing a web page to do some scheduling, I have a table Table1 id user beg_date end_date The user specifies a begin date and end date to schedule, I do two queries like the following for each date specified.... SELECT * Table1 WHERE (CONVERT(datetime, userspecified date) BETWEEN beg_date...
  15. MartDawg

    using date fields

    I’m building a little scheduling web page, where the user can check out a component for a certain time period. The web page will allow them to select a component, a begin time a begin hour an end time and an end hour. The only stipulation is that the same componenet cannot be checked out for...
  16. MartDawg

    ? on query

    I have the following query... It makes a join between 5 tables to pull out some info, name, email, ect. In my where clause I have some info like Where (table3.status IN (15,16) and (Table4.otherstatus IN (2,3,5,11) Here's my question. I need to pull another piece of data from another...
  17. MartDawg

    checking for nothing?

    aflag = &quot;YES&quot; sLSQL = &quot;Select Min(afield) as Newfield From atable where anotherfield is null&quot; Set oLKRS = oLKCon.Execute(sLSQL) this = oLKRS.Fields(&quot;NewField&quot;).Value Set oLKRS = nothing if tid = &quot;&quot; then aflag = &quot;NO&quot; end if If my query brings...
  18. MartDawg

    declaring arrays in vbscript

    I need to declare an array in vbscript... The number of elements in an array will be the value of a recordset that comes back... Here's my code. It doesn't like the last line. Any hints? dim count gettypecount=&quot;select count(*) from Sometable&quot; set...
  19. MartDawg

    help passing string with variables to function

    openit('some.asp?atime='+escape(atime)'atime2='+escape(atime2),1000,550) trying to pass the following URL and other values to a function.. pretty new to Javascript, I get a missing ) error?
  20. MartDawg

    Can you have variables inside your

    Can you have variables inside your javascript objects. For example, would the following code work? Let's say I have a group of checkboxes named, check1, check2, check3, ect. Up to 20... Can I do the following... for(var i=0; i<=20; i++){ if...

Part and Inventory Search

Back
Top