Viewing 10 posts - 91 through 100 (of 100 total)
Nice article,
Here is a site dedicated to sql security: http://www.sqlsecurity.com
You'll definately want to run a tool to scan for easily guessed passwords too.
I found a few on my...
June 5, 2002 at 3:50 pm
Here is a code revision for you, but it sounds like you might have some mapi issues too. You might want to try starting mail and sending an email...
June 5, 2002 at 3:27 pm
Here is some code that I wrote that you can alter.
This is for a custom database so ignore what it's doing and concentrate on parts of the structure that you'll...
June 5, 2002 at 3:05 pm
I wouldn't suggest doing this for a publicly accessible website because it's probably going to open up a security hole. Any user accessing your site will have access to...
June 5, 2002 at 10:15 am
Try this instead:
create table #tmp1 (result int)
insert into #tmp1 exec(@sqlstatement)
select @count = result from #tmp1
also an fyi... string or varchar values in mssql are encapsulated in single quotes, not double...
June 5, 2002 at 10:00 am
SAN (Storage Area Network) Support is determined by your operating system and not by SQL Server.
To MSSQL A SAN is transparent and looks just like a regular hard drive. ...
June 4, 2002 at 4:04 pm
... you know how to pronounce PostgreSQL.
... you dropped all of your extended stored procedures in SQL Server to prevent security holes.
... you find yourself explaining that "fixed width" means...
May 6, 2002 at 2:53 pm
Thanks!
I didn't realize you could use the alias there... works like a charm now.
Dan
May 6, 2002 at 1:54 pm
May 6, 2002 at 10:20 am
I agree for the most part...object ownership can be a real pain if everyone is allowed to create objects. There are some pretty strange circumstances where object ownership can...
October 15, 2001 at 3:54 pm
Viewing 10 posts - 91 through 100 (of 100 total)