Glam Prestige Journal

Bright entertainment trends with youth appeal.

I'm having issues uploading a video to a UNA-based social media site. It seems to be an SMTP permissions issue. What command is used in terminal to locate 'sys_transcoder_queue' table?

1 Answer

Connecting to a MySQL database from the Terminal can be done like this:

sudo mysql

This will connect you as root so long as you haven’t intentionally changed the default MySQL connection properties.

If you don’t know the name of the database containing the sys_transcoder_queue table, you can list them like this:

SHOW DATABASES;

With the name of the database known, you can now use it:

USE una_main;

Note: Be sure to replace una_main with the actual database name.

Now you can query the table:

SELECT * FROM `sys_transcoder_queue` LIMIT 25;

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy