Viewing 15 posts - 3,346 through 3,360 (of 5,394 total)
Thanks for that pointer. Currently DTC security settings are wide open (no authentication). I'm afraid there's something inside the provider code that requires additional privileges to join the distributed transaction.
I...
March 21, 2011 at 4:26 am
Sure, I will check MSDTC settings once again.
It's not that easy tracing DTC errors, it's going to be a pain.
I'm afraid you will have to wait some days for that...
March 21, 2011 at 4:07 am
Crap! I'm afraid I spoke too soon.
Now it refuses to participate distributed transactions.
#@#@€!!??#@!!! :angry:
March 21, 2011 at 3:44 am
Steve Jones - SSC Editor (3/19/2011)
Craig Farrell (3/19/2011)
AnyWayDBA
Following
...and following.
March 19, 2011 at 11:19 am
Solved! MS Support found the permissions we were missing.
The launching user had to be granted these Local Security Policies:
Create Global Objects (SeCreateGlobalPrivilege)
Impersonate a client after authentication (SeImpersonatePrivilege)
I'm setting up a...
March 18, 2011 at 5:05 am
biodun_omidiran (3/18/2011)
March 18, 2011 at 4:37 am
Probably parallelism gets in the way, so that elapsed time is far less than CPU worker time.
March 16, 2011 at 11:59 am
That's nonsense. Transactions have to finish down their own path. If you are experiencing blocking issues, focus on the causes and tune the queries instead.
March 16, 2011 at 11:56 am
OK, found it.
Just add the /!Y parameter to DTSrun.exe and it should display the original parameters.
March 16, 2011 at 10:51 am
Uripedes Pants (3/16/2011)
March 16, 2011 at 10:27 am
That "ID" is a crypted string that contains all the information on package name and version, server name and credentials to log in to the server that holds the DTS...
March 16, 2011 at 9:58 am
Concatenating that way is not safe. You'd better use XML for that:
CREATE FUNCTION dbo.CI(@chg_ref_num VARCHAR(10))
RETURNS VARCHAR(1000)
AS
BEGIN
DECLARE @ci VARCHAR(1000)
SET @ci = STUFF((
...
March 16, 2011 at 8:44 am
Can you post the function script?
March 16, 2011 at 8:31 am
You can create cross tabs even without PIVOT operator: check out this great article from Jeff Moden:
March 16, 2011 at 7:08 am
Yes, it is possible, though it could end up performing badly. What have you tried so far?
If you need help you can come back to this thread and ask a...
March 16, 2011 at 6:57 am
Viewing 15 posts - 3,346 through 3,360 (of 5,394 total)