Viewing 15 posts - 2,476 through 2,490 (of 3,655 total)
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
You could use an INT (4 bytes) and record February as 200602
You could use SMALLINT (2 bytes) and record February as 602. Of course your would face the a...
February 1, 2006 at 8:00 am
I saw something like this years ago in an Australian television program.
I believe that these windmills are called Darrius windmills.
The BBC played part of George Bush's state of the...
February 1, 2006 at 1:27 am
Try RESTORE DATATASE [Your-database-name]
January 30, 2006 at 6:46 am
Viewing 15 posts - 2,476 through 2,490 (of 3,655 total)