Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
6answers
744 views

Should I use an inline varchar(max) column or store it in a separate table?

I want to create a table in MS SQL Server 2005 to record details of certain system operations. As you can see from the table design below, every column apart from Details is is non nullable. CREATE ...
1
vote
1answer
131 views

C++ Convert SQLVARCHAR to string

I need to convert from a SQLVARCHAR to a string data type variable definitions as follows: string strFirstName; SQLVARCHAR rtnFirstName[50]; Want to be able to accomplish the following: if ...