Click here to Skip to main content
15,916,215 members
Home / Discussions / Database
   

Database

 
AnswerRe: Need Sample Stored procedures Pin
Sathesh Sakthivel12-Jun-07 2:09
Sathesh Sakthivel12-Jun-07 2:09 
AnswerRe: Need Sample Stored procedures Pin
MS Lee12-Jun-07 2:26
MS Lee12-Jun-07 2:26 
QuestionINT and VARCHAR Pin
N a v a n e e t h12-Jun-07 1:34
N a v a n e e t h12-Jun-07 1:34 
AnswerRe: INT and VARCHAR Pin
Sathesh Sakthivel12-Jun-07 2:07
Sathesh Sakthivel12-Jun-07 2:07 
QuestionHow to Customized SQL Report Viewer Control Pin
Ali Raza Shah11-Jun-07 18:38
Ali Raza Shah11-Jun-07 18:38 
QuestionPervasive SQL 8.0 Pin
Soleil couchant11-Jun-07 17:00
Soleil couchant11-Jun-07 17:00 
AnswerRe: Pervasive SQL 8.0 Pin
Sathesh Sakthivel11-Jun-07 18:51
Sathesh Sakthivel11-Jun-07 18:51 
GeneralRe: Pervasive SQL 8.0 Pin
Soleil couchant11-Jun-07 19:14
Soleil couchant11-Jun-07 19:14 
A btrieve error 85 is thrown, which means the file is locked. Right now, my solution to this problem conbsists of looping through a try-catch block and keep trying until the file is unlocked. I was just wondering whether there is a more elegant solution to that..

bool bSuccess = false;
int nCount = 0;
while (!bSuccess && nCount < 30)
{
try
{
da.Update(dsControl, "Control"); // this throws the exception if
// there is a lock on Control
bSuccess = true;
}
catch (Exception ex)
{
nCount++;
}
}

I suspect something wrong with Pervasive SQL 8.0.. :$
QuestionExecute SSIS package Pin
alexfromto11-Jun-07 11:02
alexfromto11-Jun-07 11:02 
AnswerRe: Execute SSIS package Pin
Sathesh Sakthivel11-Jun-07 16:11
Sathesh Sakthivel11-Jun-07 16:11 
QuestionTransforming and verifying dates Pin
~~~Johnny~~~11-Jun-07 9:09
~~~Johnny~~~11-Jun-07 9:09 
AnswerRe: Transforming and verifying dates Pin
~~~Johnny~~~11-Jun-07 9:39
~~~Johnny~~~11-Jun-07 9:39 
Questionuniqueidentifier data type Pin
Brendan Vogt11-Jun-07 8:52
Brendan Vogt11-Jun-07 8:52 
AnswerRe: uniqueidentifier data type Pin
Michael Potter11-Jun-07 8:59
Michael Potter11-Jun-07 8:59 
AnswerRe: uniqueidentifier data type Pin
Jhonny Alejandro Galeano Calle13-Jun-11 5:58
Jhonny Alejandro Galeano Calle13-Jun-11 5:58 
QuestionSystem.Data.SQlClient.SQlException [modified] Pin
Vimalsoft(Pty) Ltd11-Jun-07 4:26
professionalVimalsoft(Pty) Ltd11-Jun-07 4:26 
AnswerRe: System.Data.SQlClient.SQlException Pin
originSH11-Jun-07 4:53
originSH11-Jun-07 4:53 
GeneralRe: System.Data.SQlClient.SQlException Pin
Vimalsoft(Pty) Ltd11-Jun-07 20:29
professionalVimalsoft(Pty) Ltd11-Jun-07 20:29 
QuestionOracle DBF export Pin
Vertyg011-Jun-07 2:40
Vertyg011-Jun-07 2:40 
AnswerRe: Oracle DBF export Pin
andyharman11-Jun-07 6:24
professionalandyharman11-Jun-07 6:24 
GeneralRe: Oracle DBF export Pin
Vertyg011-Jun-07 7:21
Vertyg011-Jun-07 7:21 
GeneralRe: Oracle DBF export Pin
andyharman11-Jun-07 23:06
professionalandyharman11-Jun-07 23:06 
GeneralRe: Oracle DBF export Pin
RussellT5-Jun-09 9:17
professionalRussellT5-Jun-09 9:17 
QuestionAny work arounds for getting rid of Process Blocking in SQL2000 Pin
Jayaraman B10-Jun-07 23:37
Jayaraman B10-Jun-07 23:37 
AnswerRe: Any work arounds for getting rid of Process Blocking in SQL2000 Pin
andyharman10-Jun-07 23:55
professionalandyharman10-Jun-07 23:55 

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.