Viewing 15 posts - 11,446 through 11,460 (of 26,486 total)
Duplicate post, please post all responses here.
June 8, 2012 at 9:09 am
michael vessey (6/8/2012)
declare @mydate datetime
set @mydate=GETDATE()
SELECT dateadd(dd,4,CONVERT(VARCHAR(25),DATEADD(dd,-(DAY(DATEADD(mm,1,@mydate))-1),DATEADD(mm,1,@mydate)),101) )
see Pinal Dave's blog post on these
edit: the other suggestions are better than mine - i did a cut an...
June 8, 2012 at 8:54 am
Lynn Pettis (6/8/2012)
krypto69 (6/8/2012)
SELECT
----DATEPART(YEAR, e.eecDateOfLastHire) as 'Year of Hire',
--EEPDATEOFBIRTH,
(select distinct count E.EecOrgLvl2) as 'county',
CmpCompanyCode as 'Company...
June 8, 2012 at 8:48 am
krypto69 (6/8/2012)
SELECT
----DATEPART(YEAR, e.eecDateOfLastHire) as 'Year of Hire',
--EEPDATEOFBIRTH,
(select distinct count E.EecOrgLvl2) as 'county',
CmpCompanyCode as 'Company Code',
E.EecOrgLvl2 as...
June 8, 2012 at 8:45 am
BaldingLoopMan (6/8/2012)
June 8, 2012 at 8:41 am
michael vessey (6/8/2012)
BaldingLoopMan (6/8/2012)
is there a way to temporarily turn off the writting to trans log for this process?
yes, but it's not without pre-requisite actions - you must follow these...
June 8, 2012 at 8:40 am
dwilliscp (6/8/2012)
June 8, 2012 at 8:37 am
Koen Verbeeck (6/8/2012)
Koen,
You rock! It worked for me! The solution I have found by following the link you provided, http://www.sqlservercentral.com/articles/Integration+Services+(SSIS)/65112/, totally...
June 8, 2012 at 7:50 am
First, if I remember correctly from previous threads, you said the data in the text columns was dirty, requiring you to do the ltrim(rtrim()) tricks in your comparisions.
With this, the...
June 8, 2012 at 7:48 am
Something like this?
USE [Sandbox]
GO
/****** Object: UserDefinedFunction [dbo].[itvf_FormatTimeHHMM] Script Date: 06/07/2012 15:30:53 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE FUNCTION dbo.itvfn_FormatTimeHHMM (
@TimeInMinutes INT
)
RETURNS TABLE WITH...
June 7, 2012 at 3:35 pm
As quickly as a trigger can send a message to a queue for SB, if you are more familiar with SB then that is the direction I would go.
June 7, 2012 at 2:01 pm
Well, I don't know anything about CDC and only a little about SB. I would think SB might be a bit easier to implement having used it to handle...
June 7, 2012 at 1:41 pm
There is also the other part of Disaster Recovery, how much is the company willing to spend, how much are they willing to lose (data wise), how quickly do they...
June 7, 2012 at 1:00 pm
So, we are talking about cached data in the application. Have you looked at Query Notification?
June 7, 2012 at 12:56 pm
You also have define Disaster. It can be considered a disaster if a harddrive fails, or switch dies, a server crashes. A disaster does not have to mean...
June 7, 2012 at 12:49 pm
Viewing 15 posts - 11,446 through 11,460 (of 26,486 total)