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: *

  1. wolves

    pl/sql cursor not dynamic?

    Thanks very much for the tip carp. works like a charm.
  2. wolves

    pl/sql cursor not dynamic?

    I am passing a value based on a value retrieve from another cursor. The cursor where the value is passed to always retrieves the same number of rows, basically it just returns the value from just one variable. For example, cursor cur_prog always displays the first value returned from cursor...
  3. wolves

    How to identify a non-printable character

    In MS ACCESS, use Asc(Mid(FIELD_NAME,start,length)) In Access, this gives you the Dec ASCII value which you can then lookup. Example my column is called INITIAL, and this record has a valid value in the first space, but invalid in second space. Expr1:Asc(Mid(INITIAL,1,1))...
  4. wolves

    convert COMP decimal field into normal field

    Did you want the decimal to still be there? If so, you could: 01 sale 9(4)v9(5) comp. 01 sale_moved pic ---9.99999. So 0012.34567 would look like 12.34567.
  5. wolves

    Complicated running balance query, if possible?

    Thanks for the help. That Microsoft link gave me an idea in PL/SQL where I got this thing to work. Thanks again,
  6. wolves

    Complicated running balance query, if possible?

    Before I attempt to write a program for this, has anyone ever tried to keep a running balance on a query, and at the same, change the balance fields, for instance: INPUT DATA: NAME AMT ID JOE 125.00 1 JOE 125.00 2 JOE 200.00 A JOE 100.00 B...
  7. wolves

    Null/Empty Field, cannot get to return

    Yes, just found that. Thanks again for the help.
  8. wolves

    Null/Empty Field, cannot get to return

    OK, the NZ([fieldname],0) was working, I did not realize it because there was too much data and all my null fields are at the bottom. So my null fields display as '0', how do I change the query so that only my null or '0' fields are returned in the query, rather then everything, plus my null...
  9. wolves

    Using Cstr funtion, now how to justify?

    Thanks, I tried the Right, but apparently had the incorrect format. This worked. Thanks again.
  10. wolves

    Null/Empty Field, cannot get to return

    I have a field that I though was Null or empty, but I do not seem to be able to get a return from my table. So far I tried: Len(Trim(Nz(myfield,"")&"")) > 0 Nz(Table1.Field1,'')=''; NZ([fieldname],0) I assume the field has to be either NULL or empty, but why do I not get any returns from...
  11. wolves

    Using Cstr funtion, now how to justify?

    The Format([Number field], "@@@@@@@@@@") formats everything left justified still. Any other ideas?
  12. wolves

    Using Cstr funtion, now how to justify?

    Yes, in the query results. Yes, I'll check out the Format([Number field], "@@@@@@@@@@") Thanks
  13. wolves

    Using Cstr funtion, now how to justify?

    Converting a number to string using Cstr, but everything is left justified. How can I make my converted text right justified? Have not found a way yet, Thanks, in advance,
  14. wolves

    Reset dimensions? Reset cube?

    Thanks. I did not think so, but worth a try.
  15. wolves

    Reset dimensions? Reset cube?

    I know that the 'Reset Dimension' button only takes away your filters, is there a known way to reset the cube all the way back to the default view? So it takes away all the replaced rows/columns and all you have left are the first 2 dimensions (which is my default view)? Thx.
  16. wolves

    Prompt for Password in PowerPlay does not stay off

    You're absolutely correct flex13. I was using an mdl. Will save it as a pyi file. Thanks again.
  17. wolves

    Prompt for Password in PowerPlay does not stay off

    Using PowerPlay, and when looking at the Properties of the Signons, I uncheck the 'Prompt for Password' box, save then close. But when open again, the check is back in the box, causes me to put in my password each time I generate a cube. I did not have this problem using a 9i database, but now...
  18. wolves

    Can you see the script and/or macro that is run

    Can you see the script or macro that runs in the background when building or updating a cube or model? Just trying to get an idea for what is happening in the background during a build. thanks,
  19. wolves

    Macros and Scheduler, macro not running.

    Thanks. I did put the correct names without spaces ( progra~1) and (Cognos~1), so now yes, it does at least bring up the .pyi. My understanding after reading the Cognos documents what that this would or could refresh my cube? Is this correct, or is this just limited to opening up my .pyi...

Part and Inventory Search

Back
Top