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

    Import XML when extension is XLS

    I have a spreadsheet that after much consternation turns out to actually be an XML, not an XLS which the current extension is. There are over 25 fields, what is the best way to bulk insert it?
  2. CptTom

    Coldfusion OnClick More Options

    I have a CF form which requires the user to select a site location for each record, to speed up the processor, I put the most likely answers (1-4) into the drop down. The last item in the list is "More Options". I want an onclick event here that will populate the drop-down with all 152...
  3. CptTom

    Onclick More Options

    I have a form which requires the user to select a site location for each record, to speed up the processor, I put the most likely answers (1-4) into the drop down. The last item in the list is "More Options". I want an onclick event here that will populate the drop-down with all 152 choices...
  4. CptTom

    Called from Macromedia Coldfusion

    Does anyone know how to display a MS OLAP Cube within ColdFusion with the drag & drop capability? Or call MS Analysis Services from within Coldfusion? We want to merge the technologies. Thanks,
  5. CptTom

    Connecting to MS OLAP Cube

    Does anyone know how to display a MS OLAP Cube within ColdFusion with the drag & drop capability? Or call MS Analysis Services from within Coldfusion? We want to merge the technologies. Thanks,
  6. CptTom

    Can I specify *.DAT with Input Type="File"

    Is it possible to specify what file types are visible when using Input Type="File". Like most designers, I try to make things as idiot proof as possible. In this case, I only want *.dat files. I have another application that needs only Excel files. Thanks, Larry
  7. CptTom

    Stacked bar Graphs

    Has anyone tried creating stacked bar charts such that the X-Axis is a timeline (last 12 months), the y-axis is numeric (number of parts) but each bar represents a different entity (store)? Simply put, I want 1 chart, each month would contain 2 or 3 stacked bars. The stacked sections are types...
  8. CptTom

    Upload File from Local Drives & W2K Permissions

    I want a user in Cold Fusion to be able to use the browser to point to a drive\file on their local machine (hard, floppy or CD) to upload the file to the server. I keep getting Path not found error unless I "Share" the directory to "Everyone". It is picking up the correct path and filename but...
  9. CptTom

    How to grant permission to local drives

    I want a user in Cold Fusion to be able to use the browser to point to a drive\file on their local machine (hard, floppy or CD) to upload the file to the server. I keep getting Path not found error unless I "Share" the directory to "Everyone". It is picking up the correct path and filename but...
  10. CptTom

    Proc works - Job breaks

    I have a proc that runs just fine as a proc when run manually, but breaks part way through when run as a job. The proc drops the existing table recreates it from a trusted server. This runs a "Select * Into table FROM OpenQuery (Servename, 'Select * From owner.table'). The error message is...
  11. CptTom

    Assign QTY Based on Priorities

    I need to assign quantities from Table_A based on Priorities in table_B when Table_B has multiple Priorities. Table_B has a required quantity based on priority and may have more than 1 priority but not more than 3 priorities. Here is how I am trying to work it. DECLARE @Cat_Count INT...
  12. CptTom

    Drill Thru to 3rd Party report

    Has anyone ever tried to create a method to drill from PowerPlay Cube to a 3rd Party Report like Cold Fusion? I know it is possible to put a hyperlink in IWR to direct to a 3rd party and pass variables. Might it be possible to pass the variables to IWR and have it bounce directly to a 3rd...
  13. CptTom

    Embed Hyperlink in Impromptu

    I am trying to embed a dynamic hyperlink that will take a value from the IWR (WorkOrderNumber) and pass it as a variable to a hyperlink. Based on Cognos' Knowledge Base, I should have a calculated field with something like (assuming that this whole thing is a Value/String) If...
  14. CptTom

    Calling Macros across servers

    This may be more of a OS questions, but here goes. My Cognos System & batch files are located on Server1\d$\program files\cognos\cer3\bin My Cubes and macros are located on the same server under Server1\justbecause\app\areas I am trying to launch the script below from SQL Server which is on...
  15. CptTom

    Printing SQLs in Color w/MS SQL Qry Anl

    Does anyone know of an add-in that will work with MS Query Analyzer and print in color? It makes it a lot easier to read and spot keywords, etc. There is one software (Star Print) I used with MS Access and I know works with VB, but it does not have a MS SQL Server SQL piece. The SQL Server...
  16. CptTom

    Update SQL Table w/Access Query

    I need to update a MS SQL Server Table with data from MS Access. In SQL Server it would look something like: Update Master Set Reported to 'Yes' From Master Left Join (Select Distinct UIC, DateReported from NMC_Detail Inner Join CurrentInfo On CurrentInfo.ReportDate = NMC_Detail.DateReported)...
  17. CptTom

    Update Multiple Fields Single Case

    I want to update multiple fields off a single Case (or IF) statement. Example Update Temp_AMSS If DIC <> 'XM' begin Set Errors = 'Wrong Report' Set RejectErrors = RejectErrors + 1 end end If next query Begin Set Errors = Errors + ' next Error' Set...
  18. CptTom

    When Distinct Won't Work

    MS Access has a function called FIRST, which returns the first iteration of a result and looks like SELECT Master.Part_No, First(Master.Part_Name) AS Part_Name Group by Master.Part_No I need to try the same thing. I am pulling repair parts lists from several maintenance shops, I have a...
  19. CptTom

    Trouble With Dates, Variables, and Update

    I need to update a field (True_Poss) to reflect the number of days from the 15th of last month to the date in the field called (Dte_Reported). Here is what I am trying, but I get an Incorrect syntax near '=' error. I have tried variations of Set tablename.true_poss, etc. same results. Any...
  20. CptTom

    Find Table Structure

    I can't remember the select command that will list all tables and their structure (fields). When I pull them into text with headers on, some of the field names concantenate. Thanks Larry

Part and Inventory Search

Back
Top