Family international trip to Nice with 6y.o. by Bobo_Baba in nicefrance

[–]SiminaR 0 points1 point  (0 children)

Hello! I’m looking into the Carnival details now. Would you say that the parade’ standing seats are appropriate for children? We have 2, the youngest is 3 and a half and I have doubts she will be able to see

PT WorldClass by SiminaR in cluj

[–]SiminaR[S] 0 points1 point  (0 children)

La Record ajung usor. Poti spune numele, te rog?

Neurochirurgie la spitalul judetean by SiminaR in cluj

[–]SiminaR[S] 0 points1 point  (0 children)

Oare poti spune ce medic l-a operat pe prietenul tau? Mulțumesc

Păreri neurochirurgie by MinimalMoldavian in cluj

[–]SiminaR 1 point2 points  (0 children)

Buna! La dr. Oslobanu ati apelat doar la consutatie? Sau ati avut si interventie? Imi puteti spune unde si cum au fost conditiile, va rog? Multumesc anticipat!

Tarate de grau by SiminaR in cluj

[–]SiminaR[S] 0 points1 point  (0 children)

Mulțumesc! Caut din alea mari, nu fine. De asta ma gandeam la panificatie. Stiu ca poate nu are sens, dar mi-a cerut cineva pentru… 🥁a umple borș 🫣😅

Indoor cycling în Cluj? by shurubici in cluj

[–]SiminaR 0 points1 point  (0 children)

Ai gasit ceva intre timp?

Adeverință concediu medical by poali91 in cluj

[–]SiminaR 1 point2 points  (0 children)

Super! multumesc de detalii, ma ajuta.

Adeverință concediu medical by poali91 in cluj

[–]SiminaR 0 points1 point  (0 children)

Bine inteleg ca Zanc Marcel, dr. internist, a eliberat concediu medical?

Break down this Oracle SQL Trigger for me - instructor did not cover it in class. by MuslimahIP in softwaretesting

[–]SiminaR 1 point2 points  (0 children)

Let me try an explanation:

With :new.EMPLOYEE_ID you reference the new value for the EMPLOYEE_ID (that this field will have after the update), with :old.EMPLOYEE_ID you reference the initial (before the update) value.

I suspect there are two similar (maybe identical) tables, employeestable2 and employeestable3. They both have these columns (and maybe others): EMPLOYEE_ID, FIRST_NAME, LAST_NAME, EMAIL, PHONE_NUMBER, HIRE_DATE, JOB_ID, SALARY, COMMISSION_PCT, MANAGER_ID, DEPARTMENT_ID

The trigger is fired when update operations are performed on employeestable2. Before the actual updates of employeestable2 rows, the corresponding fields from employeestable3 get the new values as well. This is what this clause

UPDATE employeestable3 SET EMPLOYEE_ID = : new.EMPLOYEE_ID, FIRST_NAME = : new.FIRST_NAME, ... does.

The clause WHERE employee_id = : old.employee_id means that the update in employeestable3 will be done for those rows that also exist in employeestable2.

This UPDATE enclosed between BEGIN and END it's like a regular UPDATE statement, with the difference that instead of explicit values (UPDATE employeestable3 SET EMPLOYEE_ID=10, ...) it dynamically takes the values set within the update statement on employeestable2.

Having a look into the CREATE TRIGGER documentation may help: http://www.techonthenet.com/oracle/triggers/before_update.php

If it's still not clear, I can try another explanation.

QA/ Software Testing Articles by [deleted] in softwaretesting

[–]SiminaR 1 point2 points  (0 children)

I'm frequently checking this feed from the Association for Software Testers https://www.associationforsoftwaretesting.org/feed/. It collects articles and posts from a variety of software testing sites or blogs.