Click here to Skip to main content
15,891,431 members
Home / Discussions / Database
   

Database

 
AnswerRe: Difference between Delete and Truncate? Pin
Sathesh Sakthivel24-Sep-07 21:38
Sathesh Sakthivel24-Sep-07 21:38 
QuestionSQL Tuning Pin
Bad Programmer23-Sep-07 18:50
Bad Programmer23-Sep-07 18:50 
AnswerRe: SQL Tuning Pin
John-ph23-Sep-07 22:14
John-ph23-Sep-07 22:14 
QuestionRead Excel Sheet by oledb Pin
Rami Said Abd Alhalim23-Sep-07 2:16
Rami Said Abd Alhalim23-Sep-07 2:16 
AnswerRe: Read Excel Sheet by oledb Pin
Paul Conrad23-Sep-07 6:48
professionalPaul Conrad23-Sep-07 6:48 
GeneralRe: Read Excel Sheet by oledb Pin
Rami Said Abd Alhalim23-Sep-07 20:43
Rami Said Abd Alhalim23-Sep-07 20:43 
QuestionPassing data from stored procedure to windows applicaton Pin
Shajeel23-Sep-07 1:01
Shajeel23-Sep-07 1:01 
AnswerRe: Passing data from stored procedure to windows applicaton Pin
Mike Dimmick24-Sep-07 4:40
Mike Dimmick24-Sep-07 4:40 
SQL Server doesn't offer any support for that. If you want to pass messages between applications, and have them persist in the case of software or hardware failure, Microsoft's solution is Microsoft Message Queueing[^].

The temporary table is one solution, but do remember that true temporary tables (named with a # or ## prefix) are stored in tempdb, which is not persisted across SQL Server runs. It is recreated from scratch every time SQL Server starts up. I believe it is also recreated whenever a SQL Server cluster fails over to a different node, though I'm not sure about that.

SQL Server 2005 and .NET Framework 2.0 offer the SqlDependency class, which can be used to send a query to the database and the database to then call the application back when the results of that query would change. For more information, look up "query notifications" in the index in Books Online.


DoEvents: Generating unexpected recursion since 1991

GeneralRe: Passing data from stored procedure to windows applicaton Pin
Shajeel24-Sep-07 17:53
Shajeel24-Sep-07 17:53 
Questiondo i have to create a certificate if i need to encript the connection string Pin
prasadbuddhika23-Sep-07 0:37
prasadbuddhika23-Sep-07 0:37 
Questionhow to get protection Pin
ahmed eldeghedy22-Sep-07 10:05
professionalahmed eldeghedy22-Sep-07 10:05 
AnswerRe: how to get protection Pin
Colin Angus Mackay22-Sep-07 13:58
Colin Angus Mackay22-Sep-07 13:58 
GeneralRe: how to get protection Pin
Paul Conrad23-Sep-07 6:50
professionalPaul Conrad23-Sep-07 6:50 
AnswerRe: how to get protection Pin
Colin Angus Mackay25-Sep-07 9:37
Colin Angus Mackay25-Sep-07 9:37 
QuestionNeed ahelp about deletion of records Pin
Vjys22-Sep-07 1:00
Vjys22-Sep-07 1:00 
AnswerRe: Need ahelp about deletion of records Pin
Paul Conrad22-Sep-07 5:33
professionalPaul Conrad22-Sep-07 5:33 
Questiontable locking in sql2000 Pin
Rasal doss Solomon21-Sep-07 23:50
Rasal doss Solomon21-Sep-07 23:50 
AnswerRe: table locking in sql2000 Pin
Colin Angus Mackay22-Sep-07 14:02
Colin Angus Mackay22-Sep-07 14:02 
Questiondata length Pin
Milind Panchal21-Sep-07 20:18
Milind Panchal21-Sep-07 20:18 
AnswerRe: data length Pin
pmarfleet22-Sep-07 0:31
pmarfleet22-Sep-07 0:31 
QuestionHi all,How to Auto-deletion of a record on Particular date Pin
yadlaprasad21-Sep-07 3:13
yadlaprasad21-Sep-07 3:13 
AnswerRe: Hi all,How to Auto-deletion of a record on Particular date Pin
Pete O'Hanlon21-Sep-07 3:19
mvePete O'Hanlon21-Sep-07 3:19 
AnswerRe: Hi all,How to Auto-deletion of a record on Particular date Pin
DerekFL21-Sep-07 10:40
DerekFL21-Sep-07 10:40 
QuestionCreating a MS SQL Server back-up Pin
Bonsta21-Sep-07 2:37
Bonsta21-Sep-07 2:37 
AnswerRe: Creating a MS SQL Server back-up Pin
DerekFL21-Sep-07 10:45
DerekFL21-Sep-07 10:45 

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.