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 Mike Lewis 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. brokenbone

    XML-22036: (Error) Cannot convert 0,0E0 to number.

    Hi, I have an XSLT transformation that creates degrees minutes and seconds for latitude given in 1/10.000 minutes. I don't need the formula or corrections, don't be scared :). I have a problem with the line: <xsl:value-of select="format-number($sec, '#.##0,00', 'decimalFormat')"/> while I...
  2. brokenbone

    JFileChooser doesn't have focus first time it opens

    Hi! I'm using JFileChooser to export some data from my web application to a file. Everything is working fine, the only problem I have is when I run the application and try to export data the choose file dialog opens behind the browser window. This is quite unpleasant since the user thinks the...
  3. brokenbone

    Invalid Datawindow row/column specified at line xx

    Hi! Have you set any watches in debug mode? I remember having similar problem when I set a watch like myArray[10] and then even when my array was not initialized on my breakpoint (or had less than 10 elements) in debug mode I had 10 (or 10 - number of initialized elements in myArray) null...
  4. brokenbone

    problem with generation of sql code

    Hi! You have 3 columns in your primary key (PRESTAZIONE). Then you have indexes on 3 columns on the same table, two of which are already in primary key collection. You don't need indexes on these columns since PK already creates an index. Hope I'm right and this helps you. BB
  5. brokenbone

    Not deleting table column when deleting reference object

    Hi all! Has anyone tried to set some settings that would disable deleting a child table column when deleting a reference between two tables? I'm using PD 12. I've tried this two things: 1) When asked about deleting object or symbol I went to Impact... dialog window and selected 'Change event...
  6. brokenbone

    Using Change Data Capture (CDC) for history

    Hi all! I've decided to use CDC for keeping record of who changed what data and when. I thought I can use just the publisher without any subscribers but my changes in change table disappeared over the night. In CDC literature I then found out that there is a job that executes every 24 hours and...
  7. brokenbone

    Error creating repository user in OWB

    Hi! Well, since I didn't know what to do I went and dropped user OWBRT_SYS and all it's objects. Then I created new repository user with no problem. I inserted records for previous repositories in OWB in OWBRT_SYS tables and for now everything works fine. Just a reply if someone will run into...
  8. brokenbone

    Error creating repository user in OWB

    Hi all! First I'd like to thank you all for replying to my previous post. Now I have more technical problem. I'm using Oracle Warehouse Builder (10.2.0.1). I've been following Oracle Examples and successfully created 2 repositories (repository users). But now I'm trying to create a new one and...
  9. brokenbone

    DW and &quot;what if&quot; questions

    Thank you all for replies! If i understood you correctly I need all the data stored in DW, especially because computing all the payments with different interest rates would take a lot of time to compute. So when a user changes interest rate on report it just displays the data in DW and...
  10. brokenbone

    DW and &quot;what if&quot; questions

    John, thanks for reply. If I understand you correctly, you mean something like I said. Loan plans must be generated, stored in DW and than user can perform "what if" analysis? I can't use some 'generation' tools where I would use interest rate as parameter or something like that? Thank you, bye!
  11. brokenbone

    DW and &quot;what if&quot; questions

    Hi all! I'm new in data warehousing and I have already read a couple of theoretical literature about data warehousing, OLAP, multidimensional modeling etc. I've read a lot about how DW is perfect for answering "what if" types of questions, but havent found any practical examples. I have a...
  12. brokenbone

    Tool Tips Functionality

    Hi! I use Tag property of a control and then use it to display text from it in microhelp of MDI. I haven't tried using any kind of pop-ups. But you can use a combination of text in Tag property and then create an evet on ID pbm_dwnmousemove. In this case you can catcht the moment when user...
  13. brokenbone

    Sequence increase by 20

    Hi all! Thanks for replies! Mustafa: there is actualy nothing wrong with sequence increasing for 20, it's just that sometimes we have this generated numbers visible to users and then they ask why their new document doesn't have the number 2 but number 21 for example. Thats all. As I said...
  14. brokenbone

    Sequence increase by 20

    Hi all! In Oracle 10 I noticed that sequence sometimes increases for 20 instead for 1. Since 20 is default 'Cache size' for sequences, I wonder if this is the case. Has anyone else noticed this? I haven't found out what must happen in the meantime (is it enough just that some time pases by or...
  15. brokenbone

    XML templates for DW

    Hi all! I have a problem with importing data from XML to datawindow. 1st Creating a template will take me a long long time if I do it in design view. So I'm making templates in source code. Is there any other way to import XML templates or schemas? I have a .xsd schema defined from another...
  16. brokenbone

    Dropdowndatawindow within datawindow

    Hi! You could just disable the field for editing (using AllowEdit property in script or just deselcting Allow Editing on the properties tab for that field on DW) and set the right value (using Find and SetRow functions). If you would like to leave the field enabled for user to select a value...
  17. brokenbone

    Vertical scrollbar not changing

    Hi all! I have a problem with the size of vertical scrollbar. When I have a DataWindow with many many lines, so that scrollbar is very small and than retrieve the same DW with another SQL that returns just a few rows, the size of scrollbar doesn't change. It is working fine in some other...

Part and Inventory Search

Back
Top