Viewing 15 posts - 24,541 through 24,555 (of 26,490 total)
Start with this:
select
rightt.*,
leftt.*
FROM
#temp2 leftt
left outer join #temp1 rightt
...
June 26, 2008 at 4:08 pm
based on this:
(CONVERT(nvarchar, FireBrigade_ShiftFallows.ActualStartDate, 102) = CONVERT(nvarchar, @date,102))
I'd do this:
FireBrigade_ShiftFallows.ActualStartDate >= dateadd(dd, datediff(dd, 0, @date), 0) and
FireBrigade_ShiftFallows.ActualStartDate < dateadd(dd, datediff(dd, 0, @date) + 1, 0)
😎
June 26, 2008 at 4:02 pm
Okay....
Start here:
http://www.sqlservercentral.com/articles/Administering/debuggingmsdtcissues/1257/
http://www.sqlservercentral.com/Forums/Topic450909-146-1.aspx
😎
June 26, 2008 at 12:24 pm
I'd need a little more specifics. The table DDL, smaple data (in the form of insert statements that can be cut, pasted, and executed to populate the table), and...
June 26, 2008 at 10:12 am
I'll agree, you have a process that is working, you don't need to change it unless your requirements change.
One of the things I sometimes needed to do was restore a...
June 26, 2008 at 6:32 am
That sounds like a good script for the script library.
😎
June 26, 2008 at 6:23 am
I was manually zipping backup files using PKZip. and it did a great job. Problem was: 1) it was manual, and 2) it was time intensive.
Using HyperBac cut backup...
June 25, 2008 at 11:00 pm
Viewing 15 posts - 24,541 through 24,555 (of 26,490 total)