Viewing 15 posts - 121 through 135 (of 295 total)
Using sps and roles will recuce your surface area, but there is always the possibilty of someone using access or MS Query to access your database.
Now, it is possible to...
August 19, 2005 at 3:00 am
Use stored procs and views to hide the tables.
Ensure the user is not sysadmin or db_owner.
Use revoke and grant to limit permissions via usual roles.
Quite simple really..
You should be in...
August 19, 2005 at 1:54 am
It's best practise to qualify objects with the schema anyway.
If it is absolutely necessary, you could try "sp_addalias", but I can't remember how it's used (been so long...). I'm not...
August 19, 2005 at 1:43 am
Following on from Chris, don't forget SPACE() to add a fixed number of spaces in a string
August 19, 2005 at 1:36 am
I've enjoyed reading this thread.
I was reading CVs for my job when I left my last place (cool - pick your successor) and the rubbish we were sent. Senior SQL...
August 18, 2005 at 9:36 am
You just go into the Server netowkr utility and stop SQL listening on named pipes.
It makes no difference to your clients for XP and later MDAC versions because...
August 18, 2005 at 6:25 am
Because of the extra layers of rendering.
One stored proc can return multiple result sets, did you know
asp.net can handle it, I dunno about asp.
There are articles on it, but I don't...
August 16, 2005 at 8:12 am
Don't forget an IO filter driver such as Antivirus, 3rd party backup solutions etc messing things up
August 16, 2005 at 8:04 am
This may be from the same MSN post above but read these:
http://msdn.microsoft.com/SQL/default.aspx?pull=/library/en-us/dnsqldev/html/sqldev_04222005.asp
and
http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/sqlIObasics.mspx
The first article has some read world examples seen my MS SQL PSS
First thoughts - latest...
August 16, 2005 at 7:59 am
I'd say this would be slower. Or are your SQL and IIS on the same box, always a no-no
August 16, 2005 at 7:57 am
Bit of an odd way to to do it but try "text" datatype.
But then you have the problem in that the functions and operations you can use are a limited.
So, you...
August 16, 2005 at 7:44 am
Good call, SQLBill.
My thoughts exactly.
August 16, 2005 at 7:40 am
The way I look at it...
NULL means unknown or undefined.
Which is not nothing, Nothing means you know you should have something.
So how can you use '= NULL'? Or equal to...
August 16, 2005 at 1:58 am
At a wild guess, are the datatypes all the same (smallint or int)? No float or real or decimal?
August 15, 2005 at 9:11 am
The poster said OLTP so RAID 1+0 and they never mentioned having a SAN.
He did say mission critical and performance is very important.
HP do a AMD based DL585, which are...
August 12, 2005 at 9:14 am
Viewing 15 posts - 121 through 135 (of 295 total)