Click here to Skip to main content
15,891,431 members
Home / Discussions / Database
   

Database

 
GeneralRe: GUIDs as PK's Pin
Carl Mercier1-Apr-05 10:27
Carl Mercier1-Apr-05 10:27 
Questionhow to find server name of oracle Pin
satishrg29-Mar-05 8:55
satishrg29-Mar-05 8:55 
AnswerRe: how to find server name of oracle Pin
Colin Angus Mackay29-Mar-05 11:00
Colin Angus Mackay29-Mar-05 11:00 
AnswerRe: how to find server name of oracle Pin
Andy Brummer29-Mar-05 11:30
sitebuilderAndy Brummer29-Mar-05 11:30 
GeneralPermissions Pin
vuthaianh28-Mar-05 17:50
vuthaianh28-Mar-05 17:50 
GeneralRe: Permissions Pin
Edbert P28-Mar-05 20:11
Edbert P28-Mar-05 20:11 
QuestionWhat kind of Errors the SELECT statement can raise?? Pin
_J_28-Mar-05 10:51
_J_28-Mar-05 10:51 
AnswerRe: What kind of Errors the SELECT statement can raise?? Pin
Colin Angus Mackay29-Mar-05 0:57
Colin Angus Mackay29-Mar-05 0:57 
_J_ wrote:
What kind of Errors the SELECT statement can raise??

That's kind of like asking "What kind of accidents can my car be involved in?"


_J_ wrote:
In what cases?

When something goes wrong or not specified correctly.


_J_ wrote:
How to avoid them?

Get your permissions sorted out. Don't refer to things that don't exist. Get the syntax right.


_J_ wrote:
How to handle them?

DECLARE @error_number
SELECT .... -- Your select statement goes here
SET @error_number = @@ERROR -- @@ERROR is very short lived, grab it while you can.
IF @error_number = ... -- You can find the error numbers and the errors they relate to in the sysmessages table

If you can be more specific then perhaps I can give you a more specific response. There are somewhere in the region of 3900 error / warning messages in SQL Server.


My: Blog | Photos | Next SQL Presentation
WDevs.com - Open Source Code Hosting, Blogs, FTP, Mail and More


GeneralRe: What kind of Errors the SELECT statement can raise?? Pin
_J_29-Mar-05 1:09
_J_29-Mar-05 1:09 
GeneralRe: What kind of Errors the SELECT statement can raise?? Pin
Colin Angus Mackay29-Mar-05 1:32
Colin Angus Mackay29-Mar-05 1:32 
GeneralRe: What kind of Errors the SELECT statement can raise?? Pin
_J_29-Mar-05 1:44
_J_29-Mar-05 1:44 
GeneralRe: What kind of Errors the SELECT statement can raise?? Pin
Colin Angus Mackay29-Mar-05 1:53
Colin Angus Mackay29-Mar-05 1:53 
GeneralRe: What kind of Errors the SELECT statement can raise?? Pin
_J_29-Mar-05 1:57
_J_29-Mar-05 1:57 
GeneralRe: What kind of Errors the SELECT statement can raise?? Pin
Colin Angus Mackay29-Mar-05 11:01
Colin Angus Mackay29-Mar-05 11:01 
GeneralRe: What kind of Errors the SELECT statement can raise?? Pin
_J_29-Mar-05 11:07
_J_29-Mar-05 11:07 
AnswerRe: What kind of Errors the SELECT statement can raise?? Pin
Andy Brummer29-Mar-05 11:22
sitebuilderAndy Brummer29-Mar-05 11:22 
GeneralIdeas to Update DATA received from the client Pin
_J_28-Mar-05 6:38
_J_28-Mar-05 6:38 
GeneralRe: Ideas to Update DATA received from the client Pin
Edbert P28-Mar-05 20:06
Edbert P28-Mar-05 20:06 
GeneralRe: Ideas to Update DATA received from the client Pin
_J_28-Mar-05 21:27
_J_28-Mar-05 21:27 
GeneralMSDataShape Error Pin
gUrM33T28-Mar-05 4:32
gUrM33T28-Mar-05 4:32 
GeneralQuestion about from syntax Pin
Esmo200028-Mar-05 4:19
Esmo200028-Mar-05 4:19 
GeneralRe: Question about from syntax Pin
Jeff Martin28-Mar-05 7:28
Jeff Martin28-Mar-05 7:28 
GeneralRe: Question about from syntax Pin
Esmo200028-Mar-05 7:41
Esmo200028-Mar-05 7:41 
GeneralDatasets/Updating Pin
Nuhn28-Mar-05 3:16
Nuhn28-Mar-05 3:16 
GeneralRe: Datasets/Updating Pin
Suman Singh29-Mar-05 11:04
professionalSuman Singh29-Mar-05 11:04 

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.