Click here to Skip to main content
16,006,001 members
Home / Discussions / Database
   

Database

 
GeneralRe: I want command line convertoer for WMV format throw sql stored procedures Pin
Pete O'Hanlon20-Sep-07 4:22
mvePete O'Hanlon20-Sep-07 4:22 
QuestionAutomated Stored Procedure Pin
DotNetWWW19-Sep-07 19:43
DotNetWWW19-Sep-07 19:43 
AnswerRe: Automated Stored Procedure Pin
pmarfleet19-Sep-07 20:20
pmarfleet19-Sep-07 20:20 
AnswerRe: Scheduled Backup Pin
pmarfleet19-Sep-07 20:21
pmarfleet19-Sep-07 20:21 
AnswerRe: Is this stored procedure optimized and secure? Pin
pmarfleet19-Sep-07 20:19
pmarfleet19-Sep-07 20:19 
GeneralRe: Is this stored procedure optimized and secure? Pin
pmarfleet19-Sep-07 20:42
pmarfleet19-Sep-07 20:42 
GeneralRe: Is this stored procedure optimized and secure? Pin
pmarfleet19-Sep-07 23:16
pmarfleet19-Sep-07 23:16 
GeneralRe: Is this stored procedure optimized and secure? Pin
Pete O'Hanlon20-Sep-07 1:43
mvePete O'Hanlon20-Sep-07 1:43 
The normal thing when doing this is to actually pass the filter criteria as individual items into the procedure and then apply them using something like this:
SELECT item1, item2,...
FROM table1
WHERE (ID = @ID OR @ID IS NULL)
AND (Name = @Name OR @Name IS NULL)
This allows the database engine to actually produced a plan.

Deja View - the feeling that you've seen this post before.

AnswerRe: Storing ConnectionString Pin
Pete O'Hanlon19-Sep-07 23:52
mvePete O'Hanlon19-Sep-07 23:52 
AnswerRe: Updating Multiple Rows Pin
Christian Graus19-Sep-07 18:15
protectorChristian Graus19-Sep-07 18:15 
AnswerRe: Working Locally Or Not? Pin
Christian Graus19-Sep-07 18:18
protectorChristian Graus19-Sep-07 18:18 
GeneralAddition Pin
Urs Enzler19-Sep-07 21:40
Urs Enzler19-Sep-07 21:40 
Questionproblem in login in sql sever 2005 Pin
astatira19-Sep-07 15:54
astatira19-Sep-07 15:54 
AnswerRe: problem in login in sql sever 2005 Pin
DerekFL20-Sep-07 8:25
DerekFL20-Sep-07 8:25 
GeneralRe: problem in login in sql sever 2005 Pin
astatira20-Sep-07 15:41
astatira20-Sep-07 15:41 
GeneralRe: problem in login in sql sever 2005 Pin
DerekFL21-Sep-07 5:52
DerekFL21-Sep-07 5:52 
AnswerRe: problem in login in sql sever 2005 Pin
astatira22-Sep-07 16:59
astatira22-Sep-07 16:59 
GeneralRe: problem in login in sql sever 2005 Pin
DerekFL23-Sep-07 15:22
DerekFL23-Sep-07 15:22 
GeneralRe: problem in login in sql sever 2005 Pin
astatira29-Sep-07 13:00
astatira29-Sep-07 13:00 
Questionmanage connection to database Pin
dinakatina19-Sep-07 11:31
dinakatina19-Sep-07 11:31 
AnswerRe: manage connection to database Pin
DerekFL20-Sep-07 10:25
DerekFL20-Sep-07 10:25 
QuestionInserting table adding column problem ASP/SQL Pin
hundter19-Sep-07 8:52
hundter19-Sep-07 8:52 
AnswerRe: Inserting table adding column problem ASP/SQL Pin
pmarfleet19-Sep-07 9:37
pmarfleet19-Sep-07 9:37 
GeneralRe: Inserting table adding column problem ASP/SQL Pin
hundter19-Sep-07 10:09
hundter19-Sep-07 10:09 
GeneralRe: Inserting table adding column problem ASP/SQL Pin
pmarfleet19-Sep-07 10:14
pmarfleet19-Sep-07 10:14 

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.