Viewing 15 posts - 121 through 135 (of 285 total)
quote:
I have stored my data my using insert into table1(password) values (encrypt('mypassword')). Now how can I display this password field onto the...
December 8, 2002 at 5:02 pm
quote:
This solution from liya_kats is probably the best one. If this is SQL Server 2000, you could convert this to a user-defined...
December 8, 2002 at 5:00 pm
quote:
Does anyone know how add or sub time data types.I have to count how long an employee has been at work that...
December 8, 2002 at 4:58 pm
quote:
I am writing some stored procedures and want to encrypt the code. I am using the "With Encryption" command. Are...
December 8, 2002 at 4:52 pm
http://www.microsoft.com/xml/ has some examples of this now. Better late than never.
December 8, 2002 at 4:44 pm
If you are calling a stored proc recursively, you an define a parameter as an OUTPUT parameter and include it on all subsequent calls. When the outermost proc completes,...
December 8, 2002 at 4:42 pm
No. SS created the compiled plan based on the 1st execution of the proc. Your queries will for tables 2 and 3 (depending on order) will use the...
December 8, 2002 at 4:40 pm
Usually you don't want to do this. Instead consider using a fully qualified data base name on your stored procs. If you need to build and send a...
December 8, 2002 at 4:37 pm
There are several scripts on this site that do exactly this. Most of them create and populate a table you can join with your base table on the ID...
December 8, 2002 at 4:35 pm
See recent posting in scripts area for a scripts to decrypt encrypted data base objects.
December 8, 2002 at 4:32 pm
A script has been posted recently that lets you decrypt the statements used to build the view. Check the scripts area for details. I voted for it!...
December 8, 2002 at 4:31 pm
This is the old 'SQL Injection' bug. You can avoid the possibility by doing a CLng(ID) in your VB code. Anything that is not numeric will fail the...
December 8, 2002 at 4:29 pm
This is the old 'SQL Injection' bug. You can avoid the possibility by doing a CLng(ID) in your VB code. Anything that is not numeric will fail the...
December 8, 2002 at 4:21 pm
This is the old 'SQL Injection' bug. You can avoid the possibility by doing a CLng(ID) in your VB code. Anything that is not numeric will fail the...
December 8, 2002 at 4:20 pm
Viewing 15 posts - 121 through 135 (of 285 total)