Introduction of Data Queue - DTAQ in IBM i (AS400) | yusy4code

Sdílet
Vložit
  • čas přidán 12. 07. 2018
  • This video explains the concept of DTAQ (Data Queue) in IBM i AS400. It covers,
    1. How to create DTAQ using CRTDTAQ
    2. How to send data into DTAQ using QSNDDTAQ
    3. How to receive data from DTAQ using QRCVDTAQ
    All reference including my code is available in my GitHub
    github.com/yusy4code/ibm-i_pr...
  • Věda a technologie

Komentáře • 19

  • @yusy4code
    @yusy4code  Před 6 lety

    Get the code and reference link from my GitHub page below
    github.com/yusy4code/ibm-i_programming/tree/master/RPGLE/Data_Queue

  • @hansweenink3238
    @hansweenink3238 Před 4 lety

    Nice to see DataQ's again. I started putting them to use way back in the 90's to receive and process (live) barcode reader data coming from a Siemens PLC. Thanks for reminding me of those good old times :)

  • @ishrat7667
    @ishrat7667 Před rokem

    Salam Yusuf, very well explained. Thanks a bunch

  • @nelsonjaram
    @nelsonjaram Před 3 lety

    Very useful 👍🏻 thanks! Regards from Colombia 🇨🇴

  • @TheRafagomez62
    @TheRafagomez62 Před 3 lety

    thanks! Regards from Argentina!!

  • @yoberjimenez4895
    @yoberjimenez4895 Před 3 lety

    You are the best!!! 👍👍👍👍👍

  • @bhanuteja6261
    @bhanuteja6261 Před 6 lety

    hi Mohammed, your videos are very useful, also requesting you to make videos on as400 interview questions for experienced and beginners

  • @SanjayKumar-tt6zp
    @SanjayKumar-tt6zp Před 2 lety

    Hi Yusuf, is there any video available for as400 handler?

  • @chauhanrahul155
    @chauhanrahul155 Před 4 lety

    How it helps to sequentially send data and receive data? How is it different from message queues? Is it the fastest queue?

    • @yusy4code
      @yusy4code  Před 4 lety

      While creating the DTAQ you can define whether you need to retrieve the data in LIFO or FIFO, so based on this property the message sequence is maintained. Comparing to MQ, MQ can do more stuff. We can use MQ to send/receive data from other IBMi (or even other JAVA application). But DTAQ can be used to send/receive message within different programs.

  • @AdarshPradhan03
    @AdarshPradhan03 Před 6 lety

    can you please let me know how to check which job is using a particulat data queue at the moment because in a situation i see data in data queue using taatool library, but wrkobjlck doesn't displays any job name

    • @yusy4code
      @yusy4code  Před 6 lety

      Ya, TAATOOL comes with some handy tool to work with DTAQ. But unfortunately it was not available in PUB400 so didn't talk about it. Regarding your other question, let me have a look and get back, if we can find which job using which DTAQ.

  • @bharatheeyudu5383
    @bharatheeyudu5383 Před 2 lety

    Hi Yusuf, can you please provide an real-time example for DTAQ.

    • @yusy4code
      @yusy4code  Před 2 lety

      There are many. Any application that required real time processing along with message sequence is important then DTAQ serves the purpose. Eg if order processing is needed then the order details can come via DTAQ and the program can read the order details from queue and do the business logic. Here the processing will be real time and order sequence will be maintained.

  • @prasadrajd9265
    @prasadrajd9265 Před 6 lety

    Hi bro ,
    Currently Mocha and Pub 400 are not working. I am unable to practice. Please suggest how to practice. Is there any other way? Let me know.
    Thanks

    • @yusy4code
      @yusy4code  Před 6 lety

      PUB400 is working. I am using daily. You cannot have your own user profile now, but you can login with one of the common user profile they offer. For more details, check out my other video "pub400 in 2018"

    • @juancarlosmr6351
      @juancarlosmr6351 Před 5 lety

      @@yusy4code CAN I PRACTICE THIS WITH PUB400? BECAUSE YOU ARE USING A IP DIFERENT...

  • @chauhanrahul155
    @chauhanrahul155 Před 4 lety

    What are APIs in this context?

    • @yusy4code
      @yusy4code  Před 4 lety

      API - Application Program Interface. API in the context of DTAQ is, IBM has given you ready made program (API) which we are using to send/receive data into DTAQ.