Viewing 15 posts - 1 through 15 (of 36 total)
Adding a column to a production database is a "big deal" here.. and only as a last resort since it would be needed only for this one specialized task..
June 13, 2012 at 5:55 pm
Thanks for the explanation of the restriction on OUTPUT
The Merge I'll have to look at.. haven't used it before..
Thanks
June 13, 2012 at 5:53 pm
That would work.. Though I really would prefer a solution that didn't involve locking the whole table...
I wonder why MSFT restricted the Output clause.. is there some technical reason why...
June 13, 2012 at 1:58 pm
It's the old PK from the where clause that I can't capture. Because SQL doesn't support the type of OUTPUT clause in my example.. It can only output from the...
June 13, 2012 at 11:43 am
Never mind.. I was using @User_id as the first argument to the lookup function rather than Parameters!User_id.value
Doing it correctly works..
March 14, 2012 at 12:14 pm
Ok. Thanks.. saves me a lot of pointless searching..
January 10, 2012 at 5:23 pm
ok.. that made the tabs appar (I won't even ask at the moment why that should have made the difference..)
But when I try to test the security, it...
June 18, 2008 at 4:42 pm
1. Was able to create a role and give it full control, and add myself to that role. But all the other tabs are grayed out, (including the CellData...
June 18, 2008 at 3:50 pm
I guess I'm going to need further directions.. I can't find where in BIDS to set the permissions.
(I've already added the login domain/username to the server role in SSAS, but...
June 18, 2008 at 3:00 pm
yep.. that seems to be the problem. There must be something I don't understand about the deployment process. Within BIDS I, when I select to process and deploy, it...
June 18, 2008 at 1:27 pm
Thanks.. I thought about that, but since I need to do a number of lookups like this, merging them each time seemed like a lot of overhead. What I...
June 9, 2008 at 12:12 pm
Thanks.. looks like this will help..
January 10, 2008 at 1:43 pm
What finally made it work for me was to cast the varchar(max) field explicitly as a varbinary(max) in the select. Like this:
Select ntpk,
cast(ntNote as varbinary(max)) ntNote
From ...
and then capture...
September 30, 2007 at 1:45 pm
This should do it.. and I learned some new stuff looking at it..
Thanks
March 15, 2007 at 5:42 pm
Viewing 15 posts - 1 through 15 (of 36 total)