Viewing 15 posts - 2,596 through 2,610 (of 3,616 total)
It probably doesn't apply in your case but if a clustered index is placed on the field that has the LIKE condition it works quite well because clustered indexes are...
October 28, 2005 at 1:57 pm
Apparently it is possible to run a standard diesel engine on recycled vegetable oil.
There is a bloke around here that gets his supply of vegetable oil from fish and chip...
October 26, 2005 at 2:04 pm
The methods discussed in the following article can be used
http://www.sqlservercentral.com/columnists/rmarda/letsblockthedba.asp
Of course the instant you use them you will probably breach your support agreement.
Does your 3rd party app need the rights...
October 17, 2005 at 1:58 pm
Assuming that you have various methods of maintaining your data and can't put the logic in stored procedures try the following
INSERT INTO dbo.HistoryTable (column1, column2......column99999,Action)
SELECT I.column1, I.column2, I.column3 ,....column99999 ,
CASE...
October 17, 2005 at 1:51 pm
Let us suppose that project A had a task called documentations and project B had a task called documentation. In a projects and employees schema these would be non-atomic.
If you...
October 16, 2005 at 2:31 pm
Well you cluster for resilience so why wold you want to cluster on the same box?
When you install on a cluster the Enterprise Edition knows that it IS a cluster...
October 12, 2005 at 12:36 pm
I used to develop using IIS5 and ASP and found that getting Visual Interdev to debug properly was an impossibility. For that reason I always developed a middle tier...
October 7, 2005 at 3:33 pm
No the 2nd parameter is the user within the database.
Normally, within SQL 7 and 2000 a single login can be a single user in any one database.
What we...
October 7, 2005 at 3:26 pm
I've spent 1 month tuning 400 queries that use a variety of methods for joining tables so from a performance point of view it makes little, if any difference whether...
October 7, 2005 at 3:23 pm
Let us suppose you have 3 logins for your app
Domain\Tom
Domain\Dick
Domain\Harriet
Within your database you would run
exec sp_addalias 'Domain\Tom','dbo'
exec sp_addalias 'Domain\Dick','dbo'
exec sp_addalias 'Domain\Harriet','dbo'
Even though your 3 users log on with their own...
October 7, 2005 at 1:46 pm
If you are using stored procedures make sure that you have SET NOCOUNT ON at the head of each stored procedure. I have timed 10,000 itterations of a simple...
October 7, 2005 at 1:39 pm
The ANSI standard is your method but for the most part it is a case of personal preference.
My personal preference is to keep the WHERE clause for filtering and the...
October 7, 2005 at 1:27 pm
In the days of SQL 6.5 there was only ever one dbo so in order to grant dbo privileges there was an sp_addalias stored procedure to allow many logins to...
October 7, 2005 at 1:23 pm
I've mentioned it before but during the industrial revolution one of the big Lancashire mill owners discovered that if employees only had to work 14 hours a day instead of...
October 7, 2005 at 1:21 pm
There are two sorts of bunking off when you are not physically sick.
1. You are swinging the leg because you fancy a day off.
2. You are burnt out and need...
October 6, 2005 at 4:06 pm
Viewing 15 posts - 2,596 through 2,610 (of 3,616 total)