Click here to Skip to main content
15,868,016 members

Daniel Turini - Professional Profile



Summary

    Blog RSS
41,355
Author
2,617
Authority
9,133
Debator
13
Enquirer
296
Organiser
2,417
Participant
0
Editor
I develop software since I was 11. In the past 20 years, I developed software and used very different machines and languages, since Z80 based ones (ZX81, MSX) to mainframe computers. I still have passion for ASM, though no use for it anymore.
Professionally, I developed systems for managing very large databases, mainly on Sybase and SQL Server. Most of the solutions I write are for the financial market, focused on credit systems.
To date, I learned about 20 computer languages. As the moment, I'm in love with C# and the .NET framework, although I only can say I’m very proficient at C#, VB.NET(I’m not proud of this), T/SQL, C++ and libraries like ATL and STL.
I hate doing user interfaces, whether Web based or not, and I’m quite good at doing server side work and reusable components.
I’m the technical architect and one of the authors of Crivo, the most successful automated credit and risk assessment system available in Brazil.

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralSo, this is a message board, huh? Pin
Daniel Turini20-Mar-03 22:32
Daniel Turini20-Mar-03 22:32 
GeneralRe: So, this is a message board, huh? Pin
vf750f28-Apr-03 7:08
vf750f28-Apr-03 7:08 
GeneralRe: So, this is a message board, huh? Pin
Member 1053919614-Jul-18 22:35
Member 1053919614-Jul-18 22:35 
GeneralRe: So, this is a message board, huh? Pin
OriginalGriff14-Jul-18 22:37
mveOriginalGriff14-Jul-18 22:37 
GeneralRe: So, this is a message board, huh? Pin
OriginalGriff14-Jul-18 22:41
mveOriginalGriff14-Jul-18 22:41 
GeneralRe: So, this is a message board, huh? Pin
Vikram A Punathambekar5-May-03 0:16
Vikram A Punathambekar5-May-03 0:16 
GeneralRe: So, this is a message board, huh? Pin
WillemM13-Aug-03 7:25
WillemM13-Aug-03 7:25 
GeneralRe: So, this is a message board, huh? Pin
Mazdak4-Mar-04 7:41
Mazdak4-Mar-04 7:41 
QuestionRe: So, this is a message board, huh? Pin
Mike0917-Sep-05 10:17
Mike0917-Sep-05 10:17 
Hi, I read your article about SQL Server DO's and DONT's, it is pretty usefull for me because I don't know much about sql server performance stuff. Actually I have a question to ask, I am developing an application and I got stucked with some stuff with sql server stored procedures, and since you seem to know a lot about databases maybe you could give me a hand with this.

The thing is, I have this stored procedure which calls another stored procedure to get a result set and do some stuff with the data. The second stored procedure is located in some other database inside the server. I need to call this stored procedure, and if it fails to get the data or the connection fails with the database then I have to execute some other instruction in the first stored procedure and return a result set from another table without letting the user know that the stord procedure failed in some point of the execution.

Is there a way that I can implement something like a try catch in sql server 2000. I don't really care about catching the error thrown by the stored procedure, but continue with the execution of the secondary instructions. actually I have something like this but it doesn't works
-----------------
CREATE PROCEDURE GET_INFO
(
@OrderID varchar(8)
)
AS

declare @err as int


EXEC TCR..Get_Order @OrderID

SELECT @err = @@Error

IF @err <> 0
BEGIN

SELECT
Order,
FROM
Shipping
WHERE
OrderNum = @OrderID

END

GO
-----------------

Any help would be greatly appreciated, even if the answer is that what I need to do is not possible with this version of sql server.

Thanks
GeneralRe: So, this is a message board, huh? Pin
doom119200021-Jan-07 11:19
doom119200021-Jan-07 11:19 

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.