Viewing 15 posts - 13,351 through 13,365 (of 18,923 total)
Select Machine, Software, min(date) as FirstInstall
from dbo.Devices
group by Machine, Software
September 12, 2005 at 7:48 am
You have an option with the bulk inserts. You can add the keyword "FIRETRIGGERS" so that the triggers still fire with the insert. You can do the same...
September 12, 2005 at 7:47 am
This is a good start... but you'll have to dig around for the status column meanings :
Select CT.ftcatid, O.name as TableName, CT.name as CatalogName, CT.Status from dbo.sysfulltextcatalogs CT inner...
September 12, 2005 at 6:52 am
Select * from
(
Select null
union all
Select season from dbo.saisons
) dtNulls
cross join days
September 11, 2005 at 7:55 pm
Well it fails if the receiver has it off, and now I'm assuming when the sender had it off too. Why can't you just start those services?
September 11, 2005 at 9:03 am
No you don't need to, you can flag the new rows and have a job send the information to a text file when needed, which is the recommended method...
September 9, 2005 at 2:11 pm
Because it'll still do a scan if it's not indexed. Also the trims just don't do squat because the replace already wipped out all the spaces.
SCAN : open the...
September 9, 2005 at 2:03 pm
Yes it does :
Select whatever from dbo.YourTable where YourIndexCol like 'sdfk%'
This uses a seek
this however results in a scan
Select whatever from dbo.YourTable where YourIndexCol like '%sdfk%'
September 9, 2005 at 1:53 pm
Why not make the server generate that file 2 minutes before the service starts?
September 9, 2005 at 1:50 pm
Nice catch, confirmed :
GO
Create table test
( id int not null identity(1,1) primary key clustered,
someBit bit not null
)
GO
CREATE INDEX IX_text_Somebit on dbo.Test (SomeBit)
GO
Insert into dbo.Test (SomeBit) values (1)
Insert into...
September 9, 2005 at 1:46 pm
use max or min... but I doubt that it'll solve your problem in this case since I assume you have more than 1 row to present.
September 9, 2005 at 1:25 pm
Viewing 15 posts - 13,351 through 13,365 (of 18,923 total)