Importing SQL using a temp table
I am having a difficult time using Stored Procedures and Temp tables in JMP 11.2.1. I simply get no returndb = Create database Connection("DRIVER=SQL Server; SERVER=localserver\SQLEXPRESS; DATABASE=Test");Execute SQL(db, " CREATE TABLE #Test ( ID int) Insert INTO #Test (ID) VALUES (1), (2), (3), (4), (5) SELECT * FROM #Test DROP TABLE #Test ", ":-(");close database connection(db);This...
