Viewing 15 posts - 16 through 30 (of 44 total)
I recommend keeping each application on its own database server with a unique SA password. Sharing hardware and SQL Server instances works, but makes identifying and isolating security as...
January 11, 2008 at 10:29 am
I'm having troubles too. This article is hard to follow and read.
January 10, 2008 at 4:28 pm
It's not the size that matters, it's what you can do with it. 😀
January 10, 2008 at 10:54 am
I don't know how well this will work via copying this to the forum, but I put the following (we call it the BOMB) into my TXT or SQL files...
January 9, 2008 at 10:10 am
I think it is interesting how when push comes to shove you can sell a SQL Server application/solution to an Oracle shop, but there is no way you could sell...
January 8, 2008 at 9:07 pm
Very informative example Eric. Thanks for your efforts.
Can I just say I hate NULL values!
January 8, 2008 at 1:42 pm
Someone needs to write a good model for ISVs (Independent Software Vendors) and in-house developers to follow when building applications that fits into the standards for managing the databases security....
January 8, 2008 at 1:11 pm
It has something to do with actually reading the data page from disk vs. returning a static value of 1. If all of the data is not within the...
January 8, 2008 at 12:11 pm
TheSQLGuru (1/8/2008)
Jerome (1/7/2008)
You will often find incorrect statements about the opposite product thrown out by the other side's guru simply because he/she isn't aware - or goes on no-longer-true knowledge.
Good...
January 8, 2008 at 8:22 am
What is better, IN or EXISTS? Is it a preference, does it depend on existing indexes, or does it depends on data volumne?
I use IN with 98 million...
January 8, 2008 at 8:01 am
Chirag (1/7/2008)
select top 1 * from table1 inner join table2 on table1.po# = table2.po#
This example only returns a single row, not all rows in table1 that have a matching value...
January 7, 2008 at 9:40 pm
The following should return each po# in table1 that has at least one row in table2. It will only return each po# in table1 one time.
select po# from table1...
January 7, 2008 at 8:58 pm
Sounds like a good way to hide something... 😎
January 7, 2008 at 3:23 pm
Viewing 15 posts - 16 through 30 (of 44 total)