Viewing 15 posts - 106 through 120 (of 1,412 total)
I have not read SQL Server Security, but I would still recommend anything by David Litchfield. Also take a look at The Database Hacker's Handbook : Defending Database Servers.
November 8, 2005 at 12:10 am
No, the /3GB switch is not required, although often you would include it to maximize the memory you can use.
November 8, 2005 at 12:01 am
Perhaps you could point us in the right direction of what JSP is?
November 7, 2005 at 8:20 am
SELECT *
FROM ordhed
WHERE NOT EXISTS (SELECT * FROM qcordhed WHERE ordhedid = ordhed.ordhedid)
November 7, 2005 at 8:19 am
As I mentioned in an earlier answer to one of your questions, the smallest unit of I/O that SQL Server reads from disk are extents. An extent contains 8 pages,...
November 7, 2005 at 12:51 am
One person mentioned that they thought they heard that running SQL Enterprise with 3+GB RAM on Win2003 Standard Edition using the 3GB switch is a bad thing. Has anyone...
November 7, 2005 at 12:46 am
Since you created a separate thread for this question (which was the correct thing to do of course), I have answered there, so please continue that discussion there.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=234349
November 2, 2005 at 12:22 am
Well, since non-clustered indexes are stored that way there would be no idea in having clustered indexes being stored the same way, right? If you do not want to use...
November 2, 2005 at 12:21 am
The leaf level pages of a clustered index are data pages (mtype=1), stored in logical index order.
Regarding scanning unused pages in an extent: An extent is the smallest object SQL...
November 1, 2005 at 8:38 am
Why don't you just PRINT it?
November 1, 2005 at 5:14 am
Changing the Paradigm by Scalability Experts is one of the more recent books that gives an overview of SQL Server 2005. But I expect there will be (or are already)...
October 31, 2005 at 11:48 pm
Unfortunately though they will only be available until tomorrow, then they are removed. Just start using the product, and read through Books Online as much as possible. There are also...
October 31, 2005 at 7:03 am
Since the view shows data from the base tables it naturally cannot be updated without modifying the base tables. There is no solution for that. But what do you really...
October 30, 2005 at 8:31 am
Yes, looks pretty simple alright. But like I said, I really have no experience with ColdFusion so I do not know what kind of configuration you can do with it....
October 28, 2005 at 9:45 am
Well ,I'm sorry but I am out of specific ideas now. But it seems fairly certain that the issue lies within the CFM application, so you should start there.
October 28, 2005 at 8:11 am
Viewing 15 posts - 106 through 120 (of 1,412 total)