| @error <> 0 in a SELECT |
| RAISERROR(990000, 16, 1, @error,
@spName, 'CCFIRule', @msg) WITH SETERROR |
| Error 1000 in CCSPSIS_GetSponsorID
selecting from CCFIRule. (FIID: Corillian) |
| Not normally used. Some older code
has this message after a select, but a SELECT should not cause @error to
be non-zero unless there is an overall problem with the database. |
| @error <> 0 in an INSERT |
| RAISERROR(990001, 16, 1, @error,
@spName, 'CCBillPayRun', @msg) WITH SETERROR |
| Error 1001 in CCSPSIS_CreateRun
inserting into CCBillPayRun. (ProcessorID: 4) (RunID: 35) |
| @error should be checked after
every INSERT. |
| @error <> 0 in an UPDATE |
| RAISERROR(990002, 16, 1, @error,
@spName, 'CCUser', @msg) WITH SETERROR |
| Error 1002 in CCSPSIS_UpdateSubscriberRcds
updating CCUser. (FIID: Corillian) |
| @error should be checked after
every UPDATE. |
| @error <> 0 in a DELETE |
| RAISERROR(990003, 16, 1, @error,
@spName, '#tmpGetCurrBills', @msg) WITH SETERROR |
| Error 1003 in CCSPEB__GetCurrentBills
deleting from #tmpGetCurrBills. (FIID: Corillian) (UserID: 411400) (UserPayeeID:
25) |
| @error should be checked after
every DELETE. |
| @rowcount value unexpected
in a SELECT |
| RAISERROR(990004, 16, 1, @spName,
'CCFIRule', @rowcount, @msg) WITH SETERROR |
| Error in CCSPSIS_GetBankAcctUserInfo:
select from CCFIRule returned 0 rows. (FIID: Corillian) |
| Not normally used. Occasionally
appropriate after a SELECT. For instance, if the code before
this select determines that a SELECT should return at least one
row, then check for @rowcount < 1. |
| @rowcount value unexpected
in an INSERT |
| RAISERROR(990005, 16, 1, @spName,
'CCSisPaymentRecord', @rowcount, @msg) WITH SETERROR |
| Error in CCSPSIS_GetBankAcctUserInfo:
insert into CCSisPaymentRecord returned 0 rows. (FIID: Corillian) |
| @rowcount should be called after almost every
INSERT. |
|
If the INSERT should add exactly one row, check for
@rowcount <> 1.
If the INSERT should add at least one row, check for
@rowcount < 1.
In the rare case where an INSERT is based on a SELECT
that may or may not cause an INSERT, do not check @rowcount. |
|
| @rowcount value unexpected
in an UPDATE |
| RAISERROR(990006, 16, 1, @spName,
'CCUser', @rowcount, @msg) WITH SETERROR |
| Error in CCSPBP_SubscriberInfoReply:
update CCUser returned 0 rows. (FIID: Corillian) (UserID: 411400) (ProcessorID:
4) |
| See comments for error 990005. |
| @rowcount value unexpected
in a DELETE |
| RAISERROR(990007, 16, 1, @spName,
'CCAcctMerge', @numrows, @msg) WITH SETERROR |
| Error in CCSP_AcctMerge: delete
from CCBankAcct returned 0 rows. (FIID: Corillian) (UserID: 411400) |
| See comments for error 990005. |
| @@error non-zero after a call
to a stored procedure |
| RAISERROR(990008, 16, 1, @returnValue,
@spName, 'CCSPAU_FindRelationshipNameFromRelationshipID', @msg) WITH SETERROR |
| Error 334 in CCSPAU_GetPrimaryUser
after call to CCSPAU_FindRelationshipNameFromRelationshipID. (RelationshipID:
10032) |
| Normally used in conjunction with 60014. |
| A stored procedure could not be executed
or returned NULL |
| RAISERROR(60014, 16, 1, @spName,
'CCSPAU_FindRelationshipNameFromRelationshipID', @msg) WITH SETERROR |
| Error in CCSPAU_GetPrimaryUser:
call to CCSPAU_FindRelationshipNameFromRelationshipID returned NULL or could
not be executed. (RelationshipID: 10032) |
| Normally used in conjunction with
990008. |