| View previous topic :: View next topic |
| Author |
Message |
Bpk. Adi Wira Kusuma Guest
|
Posted: Thu Mar 31, 2005 2:51 am Post subject: How Can I Make temporary Table? |
|
|
I Use sql server. How Can I Make temporary Table?
|
|
| Back to top |
|
 |
Marc Scheuner Guest
|
Posted: Thu Mar 31, 2005 6:50 am Post subject: Re: How Can I Make temporary Table? |
|
|
| Quote: | I Use sql server. How Can I Make temporary Table?
|
CREATE TABLE #YourTempTable .......
for an on-disk local temporary table, or
CREATE TABLE ##YourGlobalTempTable .......
for an on-disk global temporary table, or
DECLARE @YourTempTable table .....
for an in-memory temporary table.
READ THE F*** MANUAL !! Use the "Books Online" that come with SQL
Server for basic, elementary stuff like that ! It's all nicely
documented.
Marc
================================================================
Marc Scheuner May The Source Be With You!
Berne, Switzerland m.scheuner -at- inova.ch
|
|
| Back to top |
|
 |
Kevin Frevert Guest
|
Posted: Thu Mar 31, 2005 1:13 pm Post subject: Re: How Can I Make temporary Table? |
|
|
"Marc Scheuner" <no.spam (AT) for (DOT) me> wrote in message
| Quote: |
READ THE F*** MANUAL !! Use the "Books Online" that come with SQL
Server for basic, elementary stuff like that ! It's all nicely
documented.
|
Somebody was up too late last night :)
krf
|
|
| Back to top |
|
 |
Marc Scheuner Guest
|
Posted: Fri Apr 01, 2005 5:31 am Post subject: Re: How Can I Make temporary Table? |
|
|
| Quote: | READ THE F*** MANUAL !! Use the "Books Online" that come with SQL
Server for basic, elementary stuff like that ! It's all nicely
documented.
Somebody was up too late last night
|
Not really No, but seriously - I don't mind people asking
questions here, and I don't mind newbie asking stupid questions once
in a while - but that just doesn't replace actually reading some
manuals to get an understanding of what you're doing.....
Marc
================================================================
Marc Scheuner May The Source Be With You!
Berne, Switzerland m.scheuner -at- inova.ch
|
|
| Back to top |
|
 |
|