Viewing 15 posts - 2,461 through 2,475 (of 3,655 total)
My question would be "Why do you want to do this"?
If it is something that the front end application requires then I would return the original recordset but have the...
February 10, 2006 at 11:40 am
Yes
Provided your query uses Col A the index will be used.
February 10, 2006 at 11:34 am
CREATE PROC dbo.MonthReport @YearOne CHAR(4) , -- I an assuming that Year is a 4 character string such as 1999 @CID VARCHAR(50) -- I am assuming that CID is the customer name. ...
February 10, 2006 at 11:33 am
It looks like the psuedo syntax out of a reporting tool.
Cognos queries sort-of look like SQL but aren't really.
February 10, 2006 at 3:17 am
I would not be nervous of the physical process but would be very nervous from the perspective of capacity.
I worked on a project where it was calculated that running 2...
February 10, 2006 at 1:39 am
Wrap your CASE statement in a CAST(CASE statement AS CHAR(3))
I have had problems with BIT fields doing peculiar things
February 9, 2006 at 12:18 pm
I would try and use DTS but have three separate queries. The first would be
select
serverproperty ('servername') as 'Server' ,
ISNULL(serverproperty ('InstanceName'),'') AS 'Instance Name' ,
serverproperty ('edition') as 'Edition',
serverproperty ('productlevel')...
February 9, 2006 at 11:53 am
Firstly what are the datatypes of your three columns and why store a date as three columns when a SMALLDATETIME will do?
My approach would be to use the CONVERT statement...
February 9, 2006 at 11:45 am
Why not read a different thread then and leave us old farts to wallow in the rosy glow of nostalgia.
* * *
Of course no one is mentioning having to crimp...
February 9, 2006 at 11:29 am
The only reference that I could find was SQL Server 2000 High Availability Series Implementing Network Load Balancing
I always thought that clustering SQL servers was simply to provide resilience....
February 9, 2006 at 5:18 am
My first job involved an HP3000/42, 52 and model 70 mini-computer and the 300MB disk drives for that were about the size of a laundrette washing machine. I suspect...
February 9, 2006 at 1:22 am
Are you experiencing problems with the way you are doing things at present?
If not then I would take the view that if it isn't broke don't fix it.
I try and...
February 7, 2006 at 11:05 am
If your unique ID is your primary key or a unique index then SELECT XYZ FROM dbo.abc WHERE key='232' is going to be fast no matter how many records you...
February 7, 2006 at 1:33 am
No, there is no drive mapping involved. It is simply a case of writing to a local directory.
I have tried right-clicking on the scheduled job and adding my intended...
February 6, 2006 at 5:35 am
Jeff,
Have you seen the trick where you do a completely superfluous WHERE {ClusterIndex} BETWEEN {ClusterIndex}.MinValue AND {ClusterIndex}.MaxValue
In SQL2000 this can force the clustered index seek even though the clause does...
February 5, 2006 at 8:12 am
Viewing 15 posts - 2,461 through 2,475 (of 3,655 total)