1> how can i find whether server is accepting encrypted password or not from C program using sybase library(encryption set by sp_configure "net password enryption reqd",1), to make sure whether i should call function ct_con_props (CS_SEC_EXTENDED_ENCRYPTION) or not

link|improve this question
Please review the answers and progress the question. – PerformanceDBA Nov 28 '10 at 1:49
feedback

1 Answer

master.. sysconfigures contains one row for every configuration parm, with its default values.

master.. syscurconfigs contains one row for every configuration parm that has been set on your server, and their runtime values.

Therefore:

SELECT ISNULL(value, 0)
    FROM  master.. syscurconfigs
    WHERE comment = "net password encryption reqd"

If it is 1 then it is set, otherwise it is not (default, 0)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.