Click here to Skip to main content
15,901,035 members
Home / Discussions / Database
   

Database

 
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 
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 
Try a where clause like

where id = 7 or id = 42 or id = 12

in other words, write the SQL so it targets all the items you want to update.

Doing this in a proc, you may want to use OpenXML to pass your collection of Ids as an XML document. Then you're likely to create a temporary table with the ids and write a different type of where clause altogether, which checks if the Id is contained in your temporary table.


Christian Graus - Microsoft MVP - C++

"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

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 
QuestionData Adapter and Updating [modified] Pin
dbrenth19-Sep-07 3:39
dbrenth19-Sep-07 3:39 
AnswerRe: Data Adapter and Updating Pin
Michael Potter19-Sep-07 5:35
Michael Potter19-Sep-07 5:35 

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.