Click here to Skip to main content
15,910,303 members
Home / Discussions / Database
   

Database

 
GeneralRe: confusing error Pin
Pavel Klocek28-May-03 2:49
Pavel Klocek28-May-03 2:49 
GeneralADO.NET & MYSQL Pin
kgoodrich27-May-03 6:47
kgoodrich27-May-03 6:47 
GeneralRe: ADO.NET & MYSQL Pin
kgoodrich27-May-03 6:58
kgoodrich27-May-03 6:58 
GeneralRe: ADO.NET & MYSQL Pin
Mazdak28-May-03 18:50
Mazdak28-May-03 18:50 
GeneralRe: ADO.NET & MYSQL Pin
kgoodrich29-May-03 4:32
kgoodrich29-May-03 4:32 
GeneralData Binding and DB Update Pin
DionChen27-May-03 3:35
DionChen27-May-03 3:35 
QuestionCan we use Array In SQL Server? Pin
pradipta26-May-03 23:07
pradipta26-May-03 23:07 
AnswerRe: Can we use Array In SQL Server? Pin
Hesham Amin27-May-03 5:43
Hesham Amin27-May-03 5:43 
Can we use Array In SQL Server ?
Yes..but using an indirect way : Create a temporary table like this :
<br />
CREATE TABLE #temp(Field1 INT PRIMARY KEY)

(put the above code in a stored proc or trigger etc..)
note the # before the name of the table :#temp this makes the temporary table available for the current connection.. ## will make it available to all connections

to free this table use:
DROP TABLE #temp

Is it possible to call a stored procedure recursively?
yes..but by default there is a limited number of nesting levels (31 I think) but you can change it..

hope this can help Smile | :)
GeneralRe: Can we use Array In SQL Server? Pin
pradipta27-May-03 18:11
pradipta27-May-03 18:11 
GeneralRe: Can we use Array In SQL Server? Pin
Hesham Amin27-May-03 20:56
Hesham Amin27-May-03 20:56 
Questionbest data Access method ? Pin
Gaurika Wijeratne26-May-03 17:34
Gaurika Wijeratne26-May-03 17:34 
AnswerRe: best data Access method ? Pin
Hesham Amin27-May-03 5:47
Hesham Amin27-May-03 5:47 
Questionhow can I open a database in one NT service? Pin
diyzhao26-May-03 17:19
diyzhao26-May-03 17:19 
GeneralCreating Tree type Structures DB Pin
saahmad25-May-03 19:35
saahmad25-May-03 19:35 
GeneralRe: Creating Tree type Structures DB Pin
Rein Hillmann25-May-03 19:46
Rein Hillmann25-May-03 19:46 
GeneralComparison of '.NET SqlClient' and 'Microsoft OLEDB' for accessing MSSQL 7 and above Pin
Uday Takbhate24-May-03 22:02
Uday Takbhate24-May-03 22:02 
GeneralRe: Comparison of '.NET SqlClient' and 'Microsoft OLEDB' for accessing MSSQL 7 and above Pin
Nick Parker25-May-03 3:35
protectorNick Parker25-May-03 3:35 
GeneralRe: Comparison of '.NET SqlClient' and 'Microsoft OLEDB' for accessing MSSQL 7 and above Pin
Vasudevan Deepak Kumar25-May-03 19:44
Vasudevan Deepak Kumar25-May-03 19:44 
GeneralRe: Comparison of '.NET SqlClient' and 'Microsoft OLEDB' for accessing MSSQL 7 and above Pin
Uday Takbhate25-May-03 22:16
Uday Takbhate25-May-03 22:16 
GeneralBCP.exe and @@TEXTSIZE Pin
John Fisher23-May-03 11:47
John Fisher23-May-03 11:47 
QuestionDataSet and XML Schema? Pin
liuage21-May-03 23:28
liuage21-May-03 23:28 
GeneralIndex of item in subquery Pin
Addabis21-May-03 3:05
Addabis21-May-03 3:05 
GeneralRe: Index of item in subquery Pin
Arjan Einbu21-May-03 11:00
Arjan Einbu21-May-03 11:00 
GeneralRe: Index of item in subquery Pin
Addabis21-May-03 19:45
Addabis21-May-03 19:45 
GeneralDataRow cast problem Pin
Andy H21-May-03 1:00
Andy H21-May-03 1:00 

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.