Click here to Skip to main content
15,925,440 members
Home / Discussions / Database
   

Database

 
AnswerRe: IDENTITY (1, 1) Pin
Eric Dahlvang1-Sep-06 12:10
Eric Dahlvang1-Sep-06 12:10 
Questionconcurrency violation Pin
webspeed1-Sep-06 0:20
webspeed1-Sep-06 0:20 
QuestionColumns not displaying in Crystal Report Pin
Ratish Aravind31-Aug-06 8:28
Ratish Aravind31-Aug-06 8:28 
QuestionHow to overcome transaction deadlock error Pin
kavithapuranik31-Aug-06 1:11
kavithapuranik31-Aug-06 1:11 
AnswerRe: How to overcome transaction deadlock error Pin
Stephen McGuire31-Aug-06 2:32
Stephen McGuire31-Aug-06 2:32 
AnswerRe: How to overcome transaction deadlock error Pin
Colin Angus Mackay31-Aug-06 4:47
Colin Angus Mackay31-Aug-06 4:47 
QuestionSql Server2000: Msg 8101 Pin
indiaone30-Aug-06 23:37
indiaone30-Aug-06 23:37 
AnswerRe: Sql Server2000: Msg 8101 Pin
Mike Dimmick31-Aug-06 3:03
Mike Dimmick31-Aug-06 3:03 
SQL Server does not allow a row to span multiple physical file pages, which are 8KB in size. Therefore the row must be smaller than 8KB, minus a certain amount of per-page overhead, to fit on a single page. Temporary tables can potentially still be written out to disk, they just end up in tempdb's files.

The total size of all fixed-size fields, plus the maximum size specified for nvarchar, varchar and varbinary fields (plus a little overhead taken by nullable columns and the lengths and offsets of variable-length fields), exceeds the maximum allowed size. However, this is not in itself an error, because it's rare to use the maximum size of all variable-length fields in a single record. If you do, however, any INSERT or UPDATE statement where the lengths of the actual fields exceeds the limit will fail.

Solutions: reduce the number of fields in the table, reduce the maximum lengths of the fields, or change some fields to text, ntext or image types (which are allowed to be stored outside the page containing the rest of the row data).

Stability. What an interesting concept. -- Chris Maunder

QuestionHow to present data to user in HTML table. Pin
HimaBindu Vejella30-Aug-06 22:36
HimaBindu Vejella30-Aug-06 22:36 
AnswerRe: How to present data to user in HTML table. Pin
Sage1-Sep-06 0:22
Sage1-Sep-06 0:22 
Questionstored procedure yazan 3 Pin
yazan_zahi30-Aug-06 22:25
yazan_zahi30-Aug-06 22:25 
AnswerRe: stored procedure yazan 3 Pin
Colin Angus Mackay31-Aug-06 4:52
Colin Angus Mackay31-Aug-06 4:52 
GeneralRe: stored procedure yazan 3 Pin
Sage1-Sep-06 0:23
Sage1-Sep-06 0:23 
GeneralRe: stored procedure yazan 3 Pin
Colin Angus Mackay1-Sep-06 0:45
Colin Angus Mackay1-Sep-06 0:45 
GeneralRe: stored procedure yazan 3 Pin
Sage1-Sep-06 0:51
Sage1-Sep-06 0:51 
GeneralRe: stored procedure yazan 3 Pin
Colin Angus Mackay1-Sep-06 10:49
Colin Angus Mackay1-Sep-06 10:49 
Questionstored procedure yazan 2 Pin
yazan_zahi30-Aug-06 21:42
yazan_zahi30-Aug-06 21:42 
AnswerRe: stored procedure yazan 2 Pin
HimaBindu Vejella30-Aug-06 22:39
HimaBindu Vejella30-Aug-06 22:39 
AnswerRe: stored procedure yazan 2 Pin
Colin Angus Mackay31-Aug-06 4:50
Colin Angus Mackay31-Aug-06 4:50 
Questionstored procedure yazan Pin
yazan_zahi30-Aug-06 21:41
yazan_zahi30-Aug-06 21:41 
AnswerRe: stored procedure yazan Pin
Colin Angus Mackay31-Aug-06 4:48
Colin Angus Mackay31-Aug-06 4:48 
Questionstored procedure Pin
yazan_zahi30-Aug-06 20:58
yazan_zahi30-Aug-06 20:58 
AnswerRe: stored procedure Pin
Michael P Butler30-Aug-06 21:18
Michael P Butler30-Aug-06 21:18 
GeneralRe: stored procedure Pin
yazan_zahi30-Aug-06 21:30
yazan_zahi30-Aug-06 21:30 
GeneralRe: stored procedure Pin
Michael P Butler30-Aug-06 21:51
Michael P Butler30-Aug-06 21:51 

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.