Click here to Skip to main content
16,005,682 members
Home / Discussions / Database
   

Database

 
AnswerRe: sql import command Pin
N a v a n e e t h21-Mar-07 21:30
N a v a n e e t h21-Mar-07 21:30 
AnswerRe: sql import command Pin
Krish - KP21-Mar-07 21:41
Krish - KP21-Mar-07 21:41 
AnswerRe: sql import command Pin
coolestCoder21-Mar-07 22:15
coolestCoder21-Mar-07 22:15 
QuestionTemporary Tables - SQL Stored Procedures Pin
N a v a n e e t h21-Mar-07 20:10
N a v a n e e t h21-Mar-07 20:10 
AnswerRe: Temporary Tables - SQL Stored Procedures Pin
Harini N K21-Mar-07 20:37
Harini N K21-Mar-07 20:37 
GeneralRe: Temporary Tables - SQL Stored Procedures Pin
N a v a n e e t h21-Mar-07 21:26
N a v a n e e t h21-Mar-07 21:26 
GeneralRe: Temporary Tables - SQL Stored Procedures Pin
Krish - KP22-Mar-07 0:30
Krish - KP22-Mar-07 0:30 
AnswerRe: Temporary Tables - SQL Stored Procedures Pin
Krish - KP21-Mar-07 21:33
Krish - KP21-Mar-07 21:33 
are you creating the temporary in "tempdb" ?

Local temporary (#table_name) tables are for current session; global temporary (##table_name)tables for all sessions.

Temporary tables are automatically dropped when they go out of scope.

A local temporary table created in a stored procedure is dropped automatically when the stored procedure completes. The table can be referenced by any nested stored procedures executed by the stored procedure that created the table. The table cannot be referenced by the process which called the stored procedure that created the table.

All other local temporary tables are dropped automatically at the end of the current session.

Global temporary tables are automatically dropped when the session that created the table ends and all other tasks have stopped referencing them. The association between a task and a table is maintained only for the life of a single Transact-SQL statement. This means that a global temporary table is dropped at the completion of the last Transact-SQL statement that was actively referencing the table when the creating session ended.


Regards
KP

GeneralRe: Temporary Tables - SQL Stored Procedures Pin
N a v a n e e t h22-Mar-07 0:29
N a v a n e e t h22-Mar-07 0:29 
GeneralRe: Temporary Tables - SQL Stored Procedures Pin
M.H.1.2.322-Mar-07 9:10
M.H.1.2.322-Mar-07 9:10 
AnswerRe: Temporary Tables - SQL Stored Procedures Pin
Colin Angus Mackay21-Mar-07 22:42
Colin Angus Mackay21-Mar-07 22:42 
QuestionRe: Temporary Tables - SQL Stored Procedures Pin
N a v a n e e t h22-Mar-07 0:23
N a v a n e e t h22-Mar-07 0:23 
AnswerRe: Temporary Tables - SQL Stored Procedures Pin
Colin Angus Mackay22-Mar-07 0:29
Colin Angus Mackay22-Mar-07 0:29 
AnswerRe: Temporary Tables - SQL Stored Procedures Pin
N a v a n e e t h22-Mar-07 0:34
N a v a n e e t h22-Mar-07 0:34 
GeneralRe: Temporary Tables - SQL Stored Procedures Pin
AskSharp22-Mar-07 8:30
AskSharp22-Mar-07 8:30 
QuestionMove to previous recors Pin
hamid_m21-Mar-07 8:19
hamid_m21-Mar-07 8:19 
AnswerRe: Move to previous recors Pin
N a v a n e e t h21-Mar-07 20:18
N a v a n e e t h21-Mar-07 20:18 
GeneralRe: Move to previous recors Pin
hamid_m21-Mar-07 20:38
hamid_m21-Mar-07 20:38 
GeneralRe: Move to previous recors Pin
Colin Angus Mackay21-Mar-07 23:48
Colin Angus Mackay21-Mar-07 23:48 
GeneralRe: Move to previous recors Pin
hamid_m22-Mar-07 6:16
hamid_m22-Mar-07 6:16 
GeneralRe: Move to previous recors Pin
Mairaaj Khan22-Mar-07 10:44
professionalMairaaj Khan22-Mar-07 10:44 
GeneralRe: Move to previous recors Pin
hamid_m22-Mar-07 11:13
hamid_m22-Mar-07 11:13 
Questionstore & retrive(play) audio file in\from database [modified] Pin
shriku2421-Mar-07 6:12
shriku2421-Mar-07 6:12 
AnswerRe: store & retrive(play) audio file in\from database Pin
Colin Angus Mackay21-Mar-07 7:43
Colin Angus Mackay21-Mar-07 7:43 
GeneralRe: store & retrive(play) audio file in\from database Pin
N a v a n e e t h21-Mar-07 18:44
N a v a n e e t h21-Mar-07 18:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.