Viewing 15 posts - 4,771 through 4,785 (of 6,105 total)
The memory manager in SQL2K is supposed to handle memory across multiple instances reasonably well, but to be honest, my shop has not put it to the test. We have...
December 6, 2002 at 10:14 pm
SQL Server 2000 is a cluster-aware application if you want to use Windows 2000 Advanced Server and cluster it. We do that for several Active/Active clusters where I work. Brian...
December 6, 2002 at 10:06 pm
Check the database compatibility in the database properties It's probably set for 65 (SQL Server 6.5). TOP wasn't a valid keyword in SQL Server 6.5.
K. Brian Kelley
http://www.truthsolutions.com/
Author: Start to Finish...
December 6, 2002 at 4:22 pm
The main reason I don't like the anonymous account is because it gives users behind the firewall access to the SQL Server unless you firewall it or put ACLs on...
December 5, 2002 at 7:24 pm
Oh wait, you're running an EXEC command inside the stored procedure? If so, then the EXEC command actually executes the command in another batch... new batch, automatic permissions check.
If that's...
December 5, 2002 at 2:48 pm
Was the debugger installed on the server during the install? Also, do you mean sysadmin as opposed to dbo rights?
K. Brian Kelley
http://www.truthsolutions.com/
Author: Start to Finish Guide to SQL Server...
December 5, 2002 at 2:42 pm
Steve's second approach, with matching Windows users (passwords, too) on both web server and SQL Server is what I'd recommend. There are some weaknesses with SQL Server logins, susceptible to...
December 5, 2002 at 2:40 pm
A small clarification:
If the stored procedure references an object (table, view, user-defined function, another stored procedure) and both the calling stored procedure and the object have the same owner, permissions...
December 5, 2002 at 2:35 pm
Yes, SQL Server does, but through the Tabular Data Stream protocol (also used by Sybase). If you look at a network frame you'll see the raw data. But this isn't...
December 5, 2002 at 8:14 am
You cannot depend on the recordset coming back in a particular order unless you specify an ORDER BY clause. Generally, you'll see behavior where the order comes back matching the...
December 5, 2002 at 5:03 am
I have a Getting Started page on Perl. I've also listed some of the books you'll want to look at to get started. The Learning Perl in Win32 Systems is...
December 4, 2002 at 10:50 am
Easiest way to think of it:
With a join I put the data in two tables side-by-side. However, since I determine how the rows match up (table1.col1 = table2.col2 for instance),...
December 4, 2002 at 9:18 am
There was a PK and there was a clustered index. The clustered index changed due to an analysis of usage in order to provide greater performance... developers' stored procedures didn't...
December 4, 2002 at 9:04 am
One of the concepts about relational database theory is you don't assume any specific ordering unless explicitly qualified by an ORDER BY clause. Our development group was tripped up by...
December 4, 2002 at 8:29 am
I give. Why is someone with a non Red Gate email address advertising Red Gate's software? Especially when Red Gate has purchased ad space on SQLServerCentral.com...
K. Brian Kelley
http://www.truthsolutions.com/
Author: Start to...
December 4, 2002 at 5:33 am
Viewing 15 posts - 4,771 through 4,785 (of 6,105 total)