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

    Number of Visible Users in WebLogic Server Console

    Is there a limit on the number of users that are displayed on the WebLogic 8.1 Server Console? I added users to the production domain on the WebLogic Server Console (path is Security -> Realms -> myrealm -> Users) but the last few users did not display on the user list. I then deleted a few...
  2. markbanker

    What does <E> mean in the 1.5.0 API docs?

    I have noticed in the 1.5.0 API docs that <E> is used a great deal. Can someone tell me what it means? Examples: Interface Collection<E> public interface Set<E> extends Collection<E> add(E o) Often times the 'E' is hyperlinked but when I click it it takes me to the Collections Interface. I...
  3. markbanker

    xcopy not recognized as internal command in XP

    I am trying to use xcopy in a batch file but it is not recognized as an internal or external command. I have tried to use the help feature 'help xcopy' and I get the same message. Ideas? Thanks, Mark
  4. markbanker

    What does the zero mean? '0#userID#'

    The application that I am evaluating has many instances of something similar to this: 'A.userID = 0#userID#' So, 'A' is an alias for a copy of the table that contains userID, but what does the zero signify? Is it saying that the userID I'm comparing to is a parsed value, not a value from a...
  5. markbanker

    Memory Variables override in CFApplication?

    I have looked to 4 resources for the answer to my question, and they all gave the same response...but I remain confused. In order to use Memory Variables, I need to check the appropriate box to enable them in the ColdFusion Administrator. This allows me to set Application or Session variables...
  6. markbanker

    Where is JITMAN.exe?

    I keep reading about the different types of JIT compilation...standard, econo, and pre. I also keep reading about using JITMAN.exe to direct which JIT compiler is used. I am unable to locate the JITMAN.exe. I have done a file search on my computer and it isnt' there. Is it a standard part of the...
  7. markbanker

    How do I create more than 7 nested If statements in Excel?

    I have a sheet that contains a list of books and their associated prices. On my other sheet you enter a bookID. This bookID is used to identify a book and find its price. I used a series of 7 nested if statements that look to the book sheet, find the appropriate book and return its price. So...
  8. markbanker

    Has the Back button been pressed?

    Is anyone aware of a way to detect when the browser's back button has been pressed? Thanks, Mark Somewhere in Texas, a village is missing an idiot.
  9. markbanker

    &lt;b&gt;Connection String for SQL Server 2000 JDBC Driver&lt;/b&gt;

    I am trying to make a connection to SQL Server 2000 from an application and I receive an error message telling me that no suitable driver can be found. Here is my code: try { Class.forName(&quot;com.microsoft.jdbc.sqlserver.SQLServerDriver&quot;); } catch (ClassNotFoundException e)...
  10. markbanker

    Register a JNDI DataSource with SQLServer

    I would like to register a datasource for SQLServer. How do I do this? I find documentation for accessing the datasource once it is created, using a jndi lookup, but I can't find anything about actually registering a datasource. If you can help with specifics for SQLServer it would be greatly...
  11. markbanker

    Problems starting RMI Registry

    I am unable to get the RMIRegistry to start. Here is the message I get when I try to start it in two different manners: C:\>rmiregistry 'rmiregistry' is not recognized as an internal or external command, operable program or batch file. C:\>start rmiregistry The system cannot find the file...
  12. markbanker

    Can I view ASP component code?

    I have been unable to find much documentation for this ASP component: RMImsApi.MapFactory. Is there a way for me to view the code for this component? Any recommendations for finding documentation for this component? Thanks, Mark
  13. markbanker

    Does PHP support Oracle 9i

    Can anyone tell me if PHP supports Oracle 9i? If so, can you recommend some resources. Thanks, Mark Banker
  14. markbanker

    Oracle 9i &amp; PHP

    Is PHP able to work with Oracle 9i yet? If so, can you direct me to more information about it. Thanks, Mark
  15. markbanker

    FTP error 553

    When I try to check out a file I get an ftp error. This is what it says: &quot;An FTP error occurred while creating a check out file for clients.htm. The file cannot be checked out. 553 the name you specified is not allowed.&quot; I've tried to change the name for who was checking out the file...
  16. markbanker

    Outer Join Problem

    I'm having a problem with this query and I can't see the error. All of the tables and fields referenced do exist in the DB. The error is listed below. Here's the query: <CFIF IsDefined(&quot;form.category&quot;)> <CFQUERY NAME=&quot;InventoryRef&quot; DATASOURCE=&quot;emscodb&quot;> SELECT...
  17. markbanker

    Access form data on action page, within Query

    I need to use the value of a user's selection within the WHERE clause of my SQL statement on the page that the form was submitted to. I keep getting errors, saying that it doesn't recognize my variable. What am I doing wrong? It should be so simple. The form is dynamically populated using the...
  18. markbanker

    passing CF variables through open( ) in JS then perform CFQUERY

    I am taking a user's input in a text field and then upon Submit, calling a JavaScript function to open a new window. I want to perform a CFQUERY in the new window and use the value retrieved from the text field to limit the result set. The error I get states that the QUERY doesn't recognize the...

Part and Inventory Search

Back
Top