answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How can you use the command field to open a new transaction in its own browser windowwhile simultaneously leaving the current transaction open?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How can you use the Command field to open a new transaction in its own browser window while simultaneously leaving the current transaction open?

Type "/o" plus the new transaction code in the Command field, then press ENTER.


What happens on clicking reload command on the web browser?

The Browser requests the entire page's information again from the source and then displays it in the browser's window.


How does two phase commit process work in distributed database?

Pretty much the same way it works in any type of architecture. If it's distributed it just means it can span multiple databases of different types. Database changes required by a transaction are initially stored temporarily by each database. The transaction monitor then issues a "pre-commit" command to each database which requires an acknowledgement. If the monitor receives the appropriate response from each database, the monitor issues the "commit" command, which causes all databases to simultaneously make the transaction changes permanent.


What is the dos command to view your browser history?

run/googlechrome.exe


Which part of the Standard toolbar from the SAP Easy Access screen allows you to open a transaction by typing the transaction code and then pressing Enter?

Command Field


How does document.close work?

The command is javascript JavaScript is interpreted by the browser browsers use JavaScript engines to execute the commands each browser differs


What is the difference between rollback and savepoint in sql with examples?

Rollback:This is used for undoing the work done in the current transaction. This command also releases the locks if any hold by the current transaction. The command used in SQL for this is simply:ROLLBACK;Savepoint:This is used for identifying a point in the transaction to which a programmer can later roll back. That is it is possible for the programmer to divide a big transaction into subsections each having a savepoint defined in it. The command used in SQL for this is simply:SAVEPOINT savepointname;For example:UPDATE…..DELETE….SAVEPOINT e1;INSERT….UPDATE….SAVEPOINT e2;……It is also possible to define savepoint and rollback together so that programmer can achieve rollback of part o a transaction. Say for instance in the aboveROLLBACK TO SAVEPOINT e2;This results in the rollback of all statements after savepoint e2Commit:This is used to end the transaction and make the changes permanent. When commit is performed all save points are erased and transaction locks are released. In other words commit ends a transaction and marks the beginning of a new transaction. The command used in SQL for this is simply:COMMIT;


Which browser is used in shell account?

Lynx is a commonly used textual browser which you can run from a command line in a shell account. It is available for most operating systems.


What command of key Ctrl 2?

If you are in an Internet Browser that supports Tabbed Browsing, hitting the Ctrl + 2 command will navigate you to the second tab in your window.


How do you open command prompt on a PC when it's blocked?

You can open a command prompt on a PC when it's blocked by simultaneously holding down the Windows key and pressing 'R' on the keyboard. Type 'cmd' into the box and you will have access to the command prompt.


How do you take snapshots on a MAc?

If you want to save an image that appears on your computer screen, you can take a snapshot or screenshot. In order to take a screenshot on a Mac computer, press the "command," "shift" and "3" keys simultaneously. Then, go into any graphics programs or word-processing program, open a blank document and press "command" and "V" simultaneously to paste the snapshot.


What is the command to retrieve deleted data from any table in SQL?

rollback command can retrieve deleted data from a table, provided commit has not been performed after deleting the data. both rollback and commit are transaction control statements.