Click here to Skip to main content
15,886,199 members
Home / Discussions / Database
   

Database

 
AnswerRe: Database Documentation Pin
Wendelius12-Jan-09 8:04
mentorWendelius12-Jan-09 8:04 
QuestionHow do I convert an MsAccess Database into a MySQL Database and is their a free Utility to do so? Pin
BobClarkSQL12-Jan-09 5:35
BobClarkSQL12-Jan-09 5:35 
AnswerRe: How do I convert an MsAccess Database into a MySQL Database and is their a free Utility to do so? Pin
pmarfleet12-Jan-09 9:23
pmarfleet12-Jan-09 9:23 
GeneralRe: How do I convert an MsAccess Database into a MySQL Database and is their a free Utility to do so? Pin
programmervb.netc++12-Jan-09 16:28
programmervb.netc++12-Jan-09 16:28 
Questionusing comma separated list in where clause Pin
Uma Kameswari12-Jan-09 2:39
Uma Kameswari12-Jan-09 2:39 
AnswerRe: using comma separated list in where clause Pin
Wendelius12-Jan-09 3:01
mentorWendelius12-Jan-09 3:01 
AnswerRe: using comma separated list in where clause Pin
Paddy Boyd12-Jan-09 5:29
Paddy Boyd12-Jan-09 5:29 
AnswerRe: using comma separated list in where clause Pin
pmpdesign12-Jan-09 18:55
pmpdesign12-Jan-09 18:55 
Use XML

DECLARE @CSV XML
SET @CSV = '<key><id>1</id><id>2</id><id>3</id></key>'

SELECT
	ParamValues.id.value('.','VARCHAR(100)')
FROM
	@CSV.nodes('/key/id') AS ParamValues(id) 


Run that and you should get three rows with values 1,2 & 3.

Join that to your query or use in the WHERE clause

Don't forget to parse the XML before presenting it to SQL in case there are any nasties on the input
GeneralRe: using comma separated list in where clause Pin
Ben Fair13-Jan-09 11:06
Ben Fair13-Jan-09 11:06 
QuestionHi how to copy a SQL server database to mySQL database Pin
Denver Thomas12-Jan-09 2:06
Denver Thomas12-Jan-09 2:06 
AnswerRe: Hi how to copy a SQL server database to mySQL database Pin
Wendelius12-Jan-09 2:51
mentorWendelius12-Jan-09 2:51 
QuestionOpen an MSAccess 2.0 database? Pin
^^BloodBeast^^12-Jan-09 1:55
^^BloodBeast^^12-Jan-09 1:55 
QuestionSSRS - Export to CSV does not work Pin
Akila R12-Jan-09 1:16
Akila R12-Jan-09 1:16 
AnswerRe: SSRS - Export to CSV does not work Pin
Ben Fair13-Jan-09 11:07
Ben Fair13-Jan-09 11:07 
QuestionDrop Constraints in Oracle SQLPLUS Pin
M Riaz Bashir11-Jan-09 21:11
M Riaz Bashir11-Jan-09 21:11 
AnswerRe: Drop Constraints in Oracle SQLPLUS Pin
Wendelius12-Jan-09 2:31
mentorWendelius12-Jan-09 2:31 
QuestionReset autonumber (ID) in SQL Server Pin
Matjaz-xyz11-Jan-09 19:53
Matjaz-xyz11-Jan-09 19:53 
AnswerRe: Reset autonumber (ID) in SQL Server Pin
Matjaz-xyz11-Jan-09 20:31
Matjaz-xyz11-Jan-09 20:31 
Questionsql connection error Pin
staticv11-Jan-09 8:01
staticv11-Jan-09 8:01 
AnswerRe: sql connection error Pin
Wendelius11-Jan-09 10:28
mentorWendelius11-Jan-09 10:28 
GeneralRe: sql connection error Pin
staticv12-Jan-09 0:23
staticv12-Jan-09 0:23 
GeneralRe: sql connection error Pin
Wendelius12-Jan-09 3:36
mentorWendelius12-Jan-09 3:36 
AnswerRe: sql connection error Pin
Henry Minute11-Jan-09 10:35
Henry Minute11-Jan-09 10:35 
QuestionInstall SQL Server on Vista Pin
George_George11-Jan-09 2:41
George_George11-Jan-09 2:41 
AnswerRe: Install SQL Server on Vista Pin
Wendelius11-Jan-09 3:05
mentorWendelius11-Jan-09 3:05 

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.