mmaz
Programmer
- Nov 22, 2000
- 347
I'm creating a temp table from my ASP, using SQL Server and the following methodology:
myQuery = "SELECT * INTO #Temp1 FROM myTable WHERE bla bla..."
set myRs = server.createObject("ADODB.Recordset"
set myRs = conn.Execute(myQuery)
My question is, do I need to destroy this table and if so, what is the syntax??
Thanks!
myQuery = "SELECT * INTO #Temp1 FROM myTable WHERE bla bla..."
set myRs = server.createObject("ADODB.Recordset"
set myRs = conn.Execute(myQuery)
My question is, do I need to destroy this table and if so, what is the syntax??
Thanks!