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. swisschris

    Excel: convert a Pivot to worksheet

    nice one. That works fine. I had thought, that Excel would refuse to do that... Thanks a lot for your help! Cheers, Chris
  2. swisschris

    Excel: convert a Pivot to worksheet

    thx, that's what I've been doing up to now...
  3. swisschris

    Excel: convert a Pivot to worksheet

    Hi, for the moment I copy the content of a Pivot table into a blank spreed sheet. I want to omit this step and was wondering, whether one could somehow convert the Pivot table into a 'normal' worksheet. Thx, Chris
  4. swisschris

    Excel: convert a Pivot to worksheet

    Hi all, does anbody know, how to convert a Pivot table in Excel 2003 into a 'normal' worksheet? - I know, this sounds a bit strange, but in the Pivot auto-filters appear above the header lines and also include the headers as filter criteria (means the headers are gone after selecting a...
  5. swisschris

    TPC C values (c-values)

    Hi all, I'm currently planning the replacement of servers. To do a proper sizing, I need to have the 'TPC C values' (c-values) for servers like V480, V490, T2000 or T5220. Does anybody have a clue, where to get them? - I've already searched www.sun.com, but no luck. Many thanks, Chris
  6. swisschris

    spawn process with working directory

    Hi there, I want to spawn a process on a win32 system. The problem is, that the process needs to run in a certain directory. Thus, I must pass on the working directory to the process. Does anybody have an idea, how to do that? Cheers, Chris
  7. swisschris

    Inventory results

    Hi there, I know there is a tool from the Tivoli support, which enables you to read the contents of a datapack (scan result) of an Endpoint, which is stored in binary format. Although asking the support for the script, they either couldn't find it, or didn't want to give it to me :-( Does...
  8. swisschris

    Perl MQSeries

    OK, so I guess there is now way in using the CorrelId as actually intended. I think I'll then write the header on the top of the data block. Thanks a lot for your help!
  9. swisschris

    Perl MQSeries

    Does this mean, the value is stored as a string? - But how to tanslate to a binary value? I'm not that experienced. But regardless whether I put a 24 bit or a 24 byte value into the CorrelId, the attribute is of type Byte24. Thus it shouldn't matter? Do you have an idea on how to get tge...
  10. swisschris

    read a file two lines at a time

    After opening the file, you could try something like that: $row1 = <FIN>; $row2 = <FIN>; This will read the next two lines of the file and you could then evaluate the value of $row2. Reading two lines at a time is not possible. Alternatively you could also read the entire file into an array...
  11. swisschris

    Perl MQSeries

    Hi, just got the information from our MQ guys, that I'm not allowed to use the MsgID, but I can use the CorrelId (MQBYTE24). Can anybody of you tell me, how to retrieve the CorrelID again? I tried to do it that way: $queue = MQSeries::Queue->new (Queue => $queue_name...
  12. swisschris

    Perl MQSeries

    Hi stevexff, unfortunately I don't know the format, in which the data comes along. Thus, is almost impossible to find the correct template :-(
  13. swisschris

    Perl MQSeries

    Hi Paul, this is an excerpt of the code: $queue = MQSeries::Queue->new (Queue => $queue_name, Mode => 'input'); # $message = MQSeries::Message->new; $message = MQSeries::Message->new (MsgDesc => {format => MQFMT_STRING}, MsgID => "$msgid"...
  14. swisschris

    Perl MQSeries

    Hi there, does anybody know, how I can get the MessageID or CorrelationID from an MQSeries message? - Getting the data from the message is no problem. But I also need the ID for handling reasons. Many thanks in advance, Christian

Part and Inventory Search

Back
Top