Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Crystal XI - Can I create and drop temp tables using SQL Command?

Status
Not open for further replies.
Oct 23, 2007
24
0
0
US
I am currently working with a "closed" DB and we cannot add any custom functions nor stored procs to.
SQL Command is the closest thing to a stored proc. I know I can write a select statement in SQL Command but can I go to the extend of create multiple temp tables and refer to each other? Thanks.
 
Using the Command in Crystal is similar to creating an Oracle view if that is what you are wanting.
 
You can create and add data using something like
Code:
Create   Table  #FEE_F (CustNo int, RollNo int, ArrearVal Decimal(9,2), Asmonth char(02), 
     RetCount int , DDCt int, ChqCt int, Custmonth char(15))
Insert  into  #FEE_F (CustNo, RollNo, ArrearVal, Asmonth, RetCount, DDCt, ChqCt, Custmonth)

For dropping, you can say something simple at the end, like Drop Table #FEE_FS. This will cause trouble where the run in interrupted and it fails to drop the tables.

The best method is to conditionally drop the tables at the start of the run. There is more than one way to do it, but the recommended method is
Code:
If Object_ID('tempdb.dbo.#FEE_GS') Is Not Null
 Drop Table #FEE_GS

Temporary tables can indeed refer to each other. You can also group and delete conditionally, useful options.


[yinyang] Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10 [yinyang]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top