Viewing 14 posts - 466 through 479 (of 479 total)
FWIW, I use StarInix' free database comparison tool. Very useful.
December 4, 2007 at 4:57 am
Based on jeff's use of a table for the pattern...
-- need a list of employee ids with a basedate set to when they start with shift_code=1, unit=1
-- this is a...
December 4, 2007 at 4:02 am
iceheartjade (11/29/2007)
I found something works really well. It calls the extend store procedures SP_OA....
The drawback with this is that is both the OLE Automation Procedures and xp_cmdshell are disabled by...
November 30, 2007 at 3:29 am
As it happens, I found a tool for doing exactly this yesterday.
http://www.codeplex.com/ScriptDB
I will even dump bcp extracts of the data for you if required.
November 29, 2007 at 7:41 am
Although the VerifySignedByCert function can confirm that the signature matches the data, since both are simply in different columns of the same table, there is no way to verify that...
November 29, 2007 at 7:34 am
I am the only person working on a database with over 100 tables, 50 views, 150 functions and a couple of dozen procedures. I've been annoyed for some time that...
November 28, 2007 at 3:37 am
I'd be interested if anyone could come up with a way to make SYSDEPENDS reliable.
Try the following:
create table a (id int)
go
create procedure b as begin select id from a end
go
SELECT...
November 27, 2007 at 2:58 am
I also found this discussion http://www.sqlservercentral.com/Forums/Topic306817-146-1.aspx which doesn't seem to come to a conclusion but also implies that under SS2K5 losing a log file means you're SOL.
Interesting if compatibilty mode...
November 19, 2007 at 3:16 am
The conclusion seems to be that there was NO right answer from the choices given.
Also one of the first references I've found to 'DBCC REBUILD_LOG' is
http://www.sqlservercentral.com/articles/Administration/sqlserver2005dbcccommandquickreference/1628/
which has it under the...
November 19, 2007 at 2:43 am
I've never had to do this, but was put off the choice FOR ATTACH_REBUILD_LOG by the section in BOL which says...
FOR ATTACH_REBUILD_LOG requires the following:
* A clean shutdown of the...
November 15, 2007 at 7:24 am
I'm in the UK (GMT currently, no daylight savings time) it's 11:45am (approx) yet the date time option says...
"All times are GMT, Time is now 12:45pm"!
November 2, 2007 at 5:48 am
I think you've missed the point about normalization. If any of the fields of TableA can be NULL (as you say most of them can be) then it makes sense...
November 2, 2007 at 5:32 am
I was interested by the title since I've spent a large amount of time trying to get a working days calculated correctly in the past year. My requirements meant that...
September 10, 2007 at 6:30 am
I'd remember reading that somewhere.
The frustrating thing is that SQLserver won't let you write a 'non-deterministic' UDF, so the implication is that it's going to assume that if you call...
June 5, 2007 at 2:23 am
Viewing 14 posts - 466 through 479 (of 479 total)