Settings and activity
4 results found
-
31 votes
An error occurred while saving the comment -
34 votesAnonymous supported this idea ·
-
31 votesAnonymous supported this idea ·
-
39 votes
An error occurred while saving the comment Anonymous commentedI just lost my hard drive on my laptop. It is encrypted so I can't get the history database off of it. More and more organizations are going to encrypted hard drives that prevent getting the data off without significant effort.
Syncing to the Cloud (i.e. Google Drive, Network Share, OneDrive, Google Drive Stream, AWS, etc.) would be extremely helpful.
Anonymous supported this idea ·
SQL Prompt has a way to do this. You can select into a temp table
SELECT A, B, C INTO #TempTable FROM Table
Sometimes you have to run the query once first but you can hover over the #TempTable name and it will provide the CREATE Table script for that temp table. Just copy, paste at the top, generate the INSERT and remove the INTO #TempTable from the query.
Hope this helps, I use it a LOT.