Enabling Workbench to read/recognize temp tables
Comments
-
Are you able to save the temp table into a format that could be easily uploaded via workbench? .CSV comes readily to mind here as a possible format for a workaround.
"When I have money, I buy books. When I have no money, I buy food." - Erasmus of Rotterdam0 -
@Giancarlo, did the above reply by nalbright help address your question?
0 -
So this problem is caused because Workbench is asking the database server for the schema, but the database server (SQL Server in this case) is returning an error that it doesn't know the schema of the query due to the use of the temp table. The error will look something like:
ERROR [42000] [Microsoft][SQL Server Native Client 11.0][SQL Server]The metadata could not be determined because statement 'INSERT INTO #temp1 SELECT 2 As Col' uses a temp table.
One workaround that I am aware of is to use T-SQL to explicitly specify the schema. So instead of:
SELECT 1 As Col
INTO #temp1
INSERT INTO #temp1
SELECT 2 As Col
SELECT Col FROM #temp1
DROP TABLE #temp1You could execute something like:
EXEC ('
SELECT 1 As Col
INTO #temp1
INSERT INTO #temp1
SELECT 2 As Col
SELECT Col FROM #temp1
DROP TABLE #temp1
')
WITH RESULT SETS (
( Col int )
)0
Categories
- All Categories
- 2K Product Ideas
- 2K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 311 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 3.8K Transform
- 657 Datasets
- 115 SQL DataFlows
- 2.2K Magic ETL
- 815 Beast Mode
- 3.3K Visualize
- 2.5K Charting
- 81 App Studio
- 45 Variables
- 775 Automate
- 190 Apps
- 481 APIs & Domo Developer
- 81 Workflows
- 23 Code Engine
- 40 AI and Machine Learning
- 20 AI Chat
- 1 AI Playground
- 1 AI Projects and Models
- 18 Jupyter Workspaces
- 410 Distribute
- 120 Domo Everywhere
- 280 Scheduled Reports
- 10 Software Integrations
- 144 Manage
- 140 Governance & Security
- 8 Domo Community Gallery
- 48 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 114 Community Announcements
- 4.8K Archive