Viewing 15 posts - 601 through 615 (of 627 total)
Is that a typo in your Insert statement or did you forget the DISTINCT keyword?
INSERT INTO #Context( OrderId )
SELECT DISTINCT tinclude.OrderId FROM ( SELECT v.OrderId FROM dbo.mdv_CustomerFilterCustomerTransDate v WITH...
April 9, 2015 at 8:07 am
I've had similar issues in the past. The problem is often the errors are very vague. Try editing the advanced option on your job step to 'Include step...
April 9, 2015 at 7:54 am
Rather than use a trigger I would have simply done:
ALTER TABLE dbo.myTable ADD ShortSSN AS RIGHT(SSN,4);
Cheers,
April 9, 2015 at 7:45 am
I'm a little confused by your question.
Do you have any suggestion on when and where to call this new SP? Because when I reinitialize the snapshot it fetches data and...
April 8, 2015 at 1:50 pm
So what does your modified SP's look like?
I'm still not sure if that is the best method since I'm pretty sure those SP's will get over written if you ever...
April 8, 2015 at 12:54 pm
Why is it a requirement to only replicate part of the SSN column? If you are already replicating to the subscriber it can easily be extracted out in a...
April 8, 2015 at 11:45 am
This will help you with what you are looking for.
http://www.mssqltips.com/sqlservertip/1394/how-to-store-longer-sql-agent-job-step-output-messages/
April 8, 2015 at 9:34 am
Awesome, thank you sir!
April 6, 2015 at 11:23 am
JoshDBGuy (4/6/2015)
Is DTC a requirement?
Off the top of my head I'd say no...long answer is I'm not 100% sure. I'm still discovering many 'interesting' things left/done/created by my predecessors.
April 6, 2015 at 10:05 am
Perry Whittle (4/3/2015)
yb751 (4/2/2015)
I would assume that in a failover the new active node would become the new host of the replica and not break the Availability Group.
Correct. There would...
April 6, 2015 at 8:35 am
That's a real good article. It does seem like I'm on the right track but sometimes it's the little caveats in the wording of some MSDN that get me.
e.g....
April 2, 2015 at 2:10 pm
opc.three (10/23/2012)
Eric M Russell (10/23/2012)
October 24, 2012 at 11:10 am
matak (10/21/2012)
I thought id give the forums a go just in case it was...
October 22, 2012 at 7:55 am
IF OBJECT_ID('TempDB..#Field','U') IS NOT NULL
DROP TABLE #Field
CREATE TABLE #Field
(
fieldID int NOT NULL,
pkFromOrigTable int NOT NULL,
fieldName varchar(200) not null,
fieldValue decimal(30,20)
)
Any advice,...
October 19, 2012 at 9:01 am
Ok, couple more questions then.
You have a field called Year but are using a float datatype. I would suggest you use DATETIME types for any fields relating to well...
October 19, 2012 at 8:41 am
Viewing 15 posts - 601 through 615 (of 627 total)