Viewing 15 posts - 181 through 195 (of 479 total)
Great article and nice fix. A nasty little error to deal with.
Cheers
Ck
Chris Kempster
Author of "SQL Server 2k for the Oracle DBA"
July 9, 2003 at 12:48 am
Hi there
You have two levels of lockdown:
1) SQL Server Service account
The default install is over the administrator login. Services run with the local system account. What...
July 8, 2003 at 10:07 pm
Hi
Just thinking aloud here... take care with plan caching, I believe sqlserver is smart enough (BUT), take care with cached plans that are NOT using indexes, as they were cached...
July 8, 2003 at 8:07 pm
Hi there
This is a classic OP from oracle dba's, but then again, any dbms will benefit from it as your reducing the IO required for maintaining the indexes. Another...
July 8, 2003 at 7:33 pm
It will reindex the table and all its indexes, nothing else.
Chris Kempster
Author of "SQL Server 2k for the Oracle DBA"
July 8, 2003 at 7:28 pm
Hi Andy
Im using my aussie accent and saying.. "thats a bloody great idea mate". The quarterly release with a binder is a unique concept for IT orientated books. ...
July 7, 2003 at 8:45 pm
Hi there
Yep, its called "SQL Server Web Services", its basically an IIS ISAPI extension + UI that allows you to very quickly create webservers (soap or not) from db stored...
July 7, 2003 at 7:24 pm
Hi there, the article actually came from my "developers how to guide" for our new VSS framework...funny enough, I had zero comments from the guys hence I was a terrible...
July 7, 2003 at 9:03 am
Hi there
declare @object int, @hr int
sp_OACreate is the way to go, along with its associated calls.. eg:
exec @hr = sp_OACreate 'SimpleCDO.Message', @object OUT
-- "SimpleCDO" is the DLL, Message is...
July 3, 2003 at 2:04 am
A fair comment Steve.
Thinking about way to protect your apps, the new .net module and handler managed via the http api is a fantastic way of quickly implementing...
July 2, 2003 at 6:50 pm
Hi
Is it taking more time to insert/update/delete data than to query?
Back to your question, if indexed correctly, you shouldnt have too much of a problem with performance given the dynamics...
July 1, 2003 at 10:40 pm
Hi all
Funny enough we had a panic session with our apps re sql injection attacks along with cross scripting problems. Generally speaking here, its the tardyness of developers thats...
July 1, 2003 at 10:31 pm
Hi there
As a matter of course in SQL Server, you should be running dbreindex or indexdefrag on a weekly basis. I have an article coming soon showing the movement...
July 1, 2003 at 10:05 pm
Hi David
Really depends on your SQL and the complexity of the joins/sql. For example:
select org_id
from organisation as A
inner join Organisation_Name AS B ON B.orgname_org_id=A.org_id
...
July 1, 2003 at 9:54 pm
Hi Frank
I have to agree with you that the sql server partitioning scheme to enhance performance is a far from optimal model. I generally have a big problem with...
July 1, 2003 at 6:28 am
Viewing 15 posts - 181 through 195 (of 479 total)