How can we help you today? How can we help you today?
tkdennis
I installed the cumulative patch and the SQL Data Compare launch button is still grayed out. I tried an existing project and creating a new project. Thanks. Traci SQL Compare 8.2.1.49 / comments
I installed the cumulative patch and the SQL Data Compare launch button is still grayed out. I tried an existing project and creating a new project. Thanks. Traci SQL Compare 8.2.1.49
0 votes
That worked perfectly - thank you! I'm copying the code I used from the article and the comments, if anyone else needs it: CREATE FUNCTION [dbo].GetTicksFromTime (@d datetime) RETURNS BIGINT AS BEGIN RETURN (DATEDiff(s, '20060823', @d) + 63291888000 ) * 10000000 END GO CREATE FUNCTION dbo.GetTimeFromTicks (@Ticks BIGINT) RETURNS DATETIME AS BEGIN DECLARE @Days BIGINT DECLARE @DaysBefore1753 BIGINT DECLARE @TimeTicks BIGINT DECLARE @Seconds BIGINT SET @Days = @Ticks / CONVERT(BIGINT,864000000000) SET @DaysBefore1753 = CONVERT(BIGINT,639905) SET @TimeTicks = @Ticks % CONVERT(BIGINT,864000000000) SET @Seconds = @TimeTicks / CONVERT(BIGINT,10000000) RETURN DATEADD(s,@Seconds,DATEADD(d,@Days - @DaysBefore1753,CONVERT(DATETIME,'1/1/1753'))) END GO DECLARE @TestDate datetime SET @TestDate = GETDATE() select @TestDate, dbo.GetTicksFromTime(@TestDate), dbo.GetTimeFromTicks(dbo.GetTicksFromTime(@TestDate)) SET @TestDate = '2/29/1992 12:34:56' select @TestDate, dbo.GetTicksFromTime(@TestDate), dbo.GetTimeFromTicks(dbo.GetTicksFromTime(@TestDate)) GO / comments
That worked perfectly - thank you! I'm copying the code I used from the article and the comments, if anyone else needs it:CREATE FUNCTION [dbo].GetTicksFromTime (@d datetime) RETURN...
0 votes
Our databases use schemas extensively. Searching for schema.object is producing many invalid hits because SQL Search is ignoring the dot. Is there a patch coming for this anytime soon? Thanks, Traci / comments
Our databases use schemas extensively. Searching for schema.object is producing many invalid hits because SQL Search is ignoring the dot. Is there a patch coming for this anytime soon? Thanks, Traci
0 votes
I was wondering why SQL Search was giving me false positives. Having the "." is critical when working with schemas. Is there an ETA on a patch for this? Thanks, Traci / comments
I was wondering why SQL Search was giving me false positives. Having the "." is critical when working with schemas. Is there an ETA on a patch for this? Thanks, Traci
0 votes
Thanks for the additional information. Mostly I dislike having to go to another window and re-type the server and database name when I'm looking right at it on the compare screen. Especially if I decide I want a snapshot of both sides. / comments
Thanks for the additional information. Mostly I dislike having to go to another window and re-type the server and database name when I'm looking right at it on the compare screen. Especially if I d...
0 votes