Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2002-05-01 : 08:39:04
|
| Yusuf writes "Hello,I am using openXML functionality of SQL. Here i will be passing a very big xml from Visualbasic to a StoredProcedure as a parameter. I can very well imagine that varchar(8000) might be less. is it possible to have a datatype like "text" in SP. Or is there a better way to send huge data to SP in SQL Server as its parameter.RegardsYusuf" |
|
|
Nazim
A custom title
1408 Posts |
Posted - 2002-05-01 : 08:44:33
|
| you can send multiple varchar parameter's each of size 8000. Sql server allows you to send 1024 parameters in a sp.Alternatively you can insert the parameter in a table and access it via SP.HTH-------------------------------------------------------------- |
 |
|
|
|
|
|