Click here to Skip to main content
15,905,971 members
Home / Discussions / Database
   

Database

 
AnswerRe: How can I deploy sql server database? Pin
Steven Campbell13-Apr-04 9:28
Steven Campbell13-Apr-04 9:28 
GeneralSELECT * Problem Pin
monrobot133-Apr-04 12:58
monrobot133-Apr-04 12:58 
GeneralRe: SELECT * Problem Pin
Colin Angus Mackay3-Apr-04 14:10
Colin Angus Mackay3-Apr-04 14:10 
GeneralRe: SELECT * Problem Pin
monrobot134-Apr-04 13:58
monrobot134-Apr-04 13:58 
GeneralSo many problems! Pin
ErinSue203-Apr-04 2:13
ErinSue203-Apr-04 2:13 
GeneralRe: So many problems! Pin
Michael P Butler4-Apr-04 0:24
Michael P Butler4-Apr-04 0:24 
Generalado, ms sql server 'text' columns Pin
sstoyan2-Apr-04 10:18
sstoyan2-Apr-04 10:18 
GeneralRe: ado, ms sql server 'text' columns Pin
Mike Dimmick2-Apr-04 11:42
Mike Dimmick2-Apr-04 11:42 
If your source data is 8-bit character-oriented, you should use a text column and ensure that the client's thread locale is the same as the locale used by the column.

If your source data is 16-bit character-oriented, use an ntext column. You should also use ntext if your client's locale will be different from the server's.

If you're just interested in storing and retrieving a file with no conversions at all, use an image column to treat it as binary. Obviously you can't do full-text search on an image column.

When you assign a char string to a _bstr_t, the conversion to Unicode is performed using the thread's default code page. When the opposite process occurs to store the data in the database, SQL Server uses the configured locale's code page. If the two settings don't match, the conversions may not be a round-trip.

Stability. What an interesting concept. -- Chris Maunder
GeneralRe: ado, ms sql server 'text' columns Pin
sstoyan3-Apr-04 21:38
sstoyan3-Apr-04 21:38 
GeneralRe: ado, ms sql server 'text' columns Pin
Mike Dimmick5-Apr-04 1:53
Mike Dimmick5-Apr-04 1:53 
GeneralRe: ado, ms sql server 'text' columns Pin
sstoyan5-Apr-04 8:39
sstoyan5-Apr-04 8:39 
GeneralDatabase connection problem Pin
cyonite2-Apr-04 4:29
cyonite2-Apr-04 4:29 
GeneralRe: Database connection problem Pin
Mike Dimmick2-Apr-04 5:32
Mike Dimmick2-Apr-04 5:32 
GeneralRe: Database connection problem Pin
cyonite2-Apr-04 6:20
cyonite2-Apr-04 6:20 
GeneralRe: Database connection problem Pin
RichC4-Apr-04 14:35
RichC4-Apr-04 14:35 
GeneralHierarchical structure in ADO.Net Pin
P I2-Apr-04 4:07
P I2-Apr-04 4:07 
GeneralRe: Hierarchical structure in ADO.Net Pin
John Kuhn2-Apr-04 15:55
John Kuhn2-Apr-04 15:55 
GeneralDate format Pin
Xander802-Apr-04 3:50
Xander802-Apr-04 3:50 
GeneralRe: Date format Pin
Mike Dimmick2-Apr-04 5:34
Mike Dimmick2-Apr-04 5:34 
GeneralLimiting a text field Pin
monrobot131-Apr-04 9:10
monrobot131-Apr-04 9:10 
GeneralStored Proc Newbie Pin
quilkin1-Apr-04 6:26
quilkin1-Apr-04 6:26 
GeneralRe: Stored Proc Newbie Pin
Colin Angus Mackay1-Apr-04 6:58
Colin Angus Mackay1-Apr-04 6:58 
GeneralRe: Stored Proc Newbie Pin
quilkin1-Apr-04 10:16
quilkin1-Apr-04 10:16 
GeneralRe: Stored Proc Newbie Pin
Colin Angus Mackay1-Apr-04 10:30
Colin Angus Mackay1-Apr-04 10:30 
GeneralRe: Stored Proc Newbie Pin
quilkin2-Apr-04 11:12
quilkin2-Apr-04 11:12 

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.