Skip to main content

How to resume a ctrl-z stopped job

Today before I knew how to exit a psql command prompt in PostgreSQL I used ctrl-z to exit. I wanted to get back into psql so I went to Google to find out how. This time SuperUser.com came to my rescue.

It is as simple as this:

fg

Read the post for other options, but the above is what I needed.  Worked like a charm

Comments

Popular posts from this blog

Boy I wish there was a way to create a table from a select query

I was doing some SQL work today when I had a thought: Boy I wish there was a way to create a table from a select query I started in Navicat to see if it was possible.  After find nothing I decided to google it all the while thinking in my head how I was going to create a script to do this if I couldn't find anything. I found something. I was happy yet sad.  Happy because I didn't have to take the time to create something.  Sad because I didn't have to create the tool.  It sounded like a fun project. What did I find you ask? The "Create Table as" statement. CREATE TABLE [ IF NOT EXISTS ] new_table [ AS ] SELECT expressions FROM existing_tables [WHERE conditions]; The best part about it is the statement knows to go to the existing tables to get the column type, size etc.   Such a tremendous time saver.  I cannot believe in all my years of programming I never stumbled upon this type of statement. Source: Tech on the Net

UPS - User Id and Shipper Number combination is not qualified to receive negotiated rates.

Today I started to receive the following message from the UPS API: User Id and Shipper Number combination is not qualified to receive negotiated rates. and to make matters worse, the result of this issue caused the checkout process to error preventing our customers from finishing their orders. So after doing a little research on my end I ended up calling the UPS technical support phone number for the United States: Over the phone we went over the following steps: UPS.COM You must add and authenticate your account using Account Summary to view Negotiated Rates in UPS Internet Shipping, Time and Cost Calculator on ups.com, and the UPS Developer Kit - Shipping and Rating APIs. To add and authenticate an account: 1. Login to ups.com using your My UPS ID and password. 2. Select the My UPS tab at the top of the page. 3. Select Account Summary from the navigation menu or the tab rollover. 4. From there select Add an Existing UPS Account. 5. Follow the steps to authenticate the account. To aut

Git GUI for Windows

This past weekend I needed to upload code to github.  I chose to use the GitHub for Windows which made it painless. Today I decided to research and see what other GUI clients I could find for GIT. I stumbled upon SourceTree  by Atlassian Software. It was really easy to setup a local repository as well as connecting to GitHub. My favorite feature so far besides the ease of use is the dashboard that shows you the files that need committed and the diff details right beside it. Here is a screenshot: