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 SkipVought 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: awolff02
  • Order by date
  1. awolff02

    Displaying last 6 images

    I've searched the forum and was not able to find any hints to get me started. Basically I have a folder that images get uploaded to every x minutes. The images are titled: IMAGE1YYYYMMDDHHmmss So I want to be able to read all the image files into an array..sort the array so that the latest 6...
  2. awolff02

    Do I need a new Dimension?

    O.K. I did that and when I went to "Full Process" the cube it failed. "Detected two sibling members with the same name: N/A" Indeed some of the rows have 'N/A' values for the site_descrption column so I guess it must not like the fact that the values are not unique? Thanks for your help.
  3. awolff02

    Do I need a new Dimension?

    Hi, I have an OLAP cube. One of the dimensions is based on a table called 'site_dim'. The table contains site_id, and site_description columns. Currently when browing the cube users can only see the 'site_id' field but they would also like to see the site_description. I added the...
  4. awolff02

    Determine if Package failed or success

    Hi. I am confused. I have an ActiveX task (TaskA) that does stuff. At the end of the script I set the variable: Main = DTSTaskExecResult_Success -or- Main = DTSTaskExecResult_Failure What code do I need in the parent package to determine whether the TaskA was Success or Failure? I...
  5. awolff02

    re-using objects

    Hello, If in my code I do this: File myFile = new File("myfile1.xml"); DocumentBuilderFactory dbfi = DocumentBuilderFactory.newInstance(); DocumentBuilder dbi = dbfi.newDocumentBuilder(); docxml = dbi.parse(File1); and later on within the same block I do this: myFile = new...
  6. awolff02

    Transform result into DOM object

    Hello. I have the following code with transforms a xml with xslt and sends the result to System.Out... import javax.xml.transform.Transformer; import javax.xml.transform.TransformerFactory; import javax.xml.transform.stream.StreamSource; import javax.xml.transform.stream.StreamResult; import...

Part and Inventory Search

Back
Top