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.

 All Forums
 Old Forums
 CLOSED - General SQL Server
 How can i insert very large data in SQL server

Author  Topic 

chiragvm
Yak Posting Veteran

65 Posts

Posted - 2007-02-23 : 09:09:09
Hello sir/mam,
I want to store large data in sql-server,
Now varchar has its limitation or varbinary so what is it's solution?
Reply me ASAP.
Thanking You,

harsh_athalye
Master Smack Fu Yak Hacker

5581 Posts

Posted - 2007-02-23 : 09:13:28
SQL 2000:
You can use text/ntext/image datatype

SQL 2005:
You can use varchar(max)/varbinary(max)

Harsh Athalye
India.
"The IMPOSSIBLE is often UNTRIED"
Go to Top of Page

Kristen
Test

22859 Posts

Posted - 2007-02-24 : 05:21:12
"[i]large data[i/]"

If that is "files" then you might be better off storing the Files on a File Server, and storing a PATH to the file in the database

Kristen
Go to Top of Page
   

- Advertisement -