Viewing 15 posts - 2,476 through 2,490 (of 3,658 total)
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
I don't have BOL in front of me but look for a procedure with a name like sp_resetstatus.
Once you have done that you should be able to DROP the database.
February 4, 2006 at 4:02 am
If you do WHERE {Function(field)} = {value} then you will probably do a TABLE SCAN because the value isn't an indexed value.
Probably won't matter in a small-ish database but in...
February 4, 2006 at 3:48 am
So am I correct in thinking that it is if a single transaction requires a growth in excessive of current free space limits plus one expansion?
February 3, 2006 at 6:47 am
That is (Company Removed) added to my SPAM filter and blocked internet sites!
February 3, 2006 at 1:48 am
SQL2000 also makes use of the INFORMATION_SCHEMA views. You can see the definitive list within the MASTER database.
Some of the system tables have changed in SQL2005 so I would...
February 2, 2006 at 7:11 am
bcp is one way. I use BCP to export the results from stored procedures.
You can use SQL Query Analyser .See The best kept secret about SQL Query Analyser....
February 1, 2006 at 3:56 pm
It depends what you mean by huge
I had a requirement to produce a search that had certain compulsory search terms and a number of optional ones.
What I did was have...
February 1, 2006 at 3:51 pm
I take it that these were not Windows Account users?
A login has an SID number which is unique to the box. SID 1 is the SA account.
If you recreated...
February 1, 2006 at 12:13 pm
Frank Buchan and David Reed both make the point about weaknesses in business analysis contributing to poor code quality.
Quality is something that needs to be something applied to throughout a...
February 1, 2006 at 12:06 pm
The INT method does not require any padding.
The user wants to query for a range of dates then
CREATE PROC dbo.MyQuery
@StartYear INT ,
@StartMonth INT ,
@EndYear INT ,
@EndMonth INT
AS
DECLARE @StartPeriod INT ,@EndPeriod...
February 1, 2006 at 12:06 pm
Viewing 15 posts - 2,476 through 2,490 (of 3,658 total)