Viewing 15 posts - 1 through 15 (of 15 total)
thanks. I have added a group to a user role, but I have a feeling my server is not "visible" on the network. I know this is bleeding...
November 3, 2014 at 8:09 am
Through a shared data source (for reporting services) or an .ODC file to connect an Excel doument.
November 2, 2014 at 1:11 pm
thank you all. both marked as sol'n
Cheers!
September 18, 2014 at 9:27 am
Thanks. It now shows up in select * from sys.servers
However select @@ServerName still returns null (curious)
I can use this workaround if needed :
select * from sys.servers where is_linked=0
richard.bowles (9/18/2014)
September 18, 2014 at 9:23 am
I get a list of about 9 servers
Server_ID, Name, Product, Provider.
But NOT the name of the Dev server that I run the : select * from sys.servers from
richard.bowles...
September 18, 2014 at 9:12 am
Now we're onto something.
On my local instance (2012) :
SELECT @@SERVERNAME
returns the name of my local server
On the DEV team's server (2008R2) :
SELECT @@SERVERNAME
returns NULL
richard.bowles (9/18/2014)
select...
September 18, 2014 at 9:05 am
Thanks for the response. Still "NULL"
richard.bowles (9/18/2014)
Try:
Declare @ServerName sysname
select @ServerName = @@servername
Print @ServerName
September 18, 2014 at 9:00 am
Ok. Is there anyway to simply package the PowerPivot document with the PPT presentation (cut the need for a SP connection out of the loop?)
November 13, 2013 at 2:23 pm
I wanted to use an event handler but it seems that the Redirection doesn't raise any events
June 6, 2012 at 9:27 am
Also I don't want to hear about something better down the road. Is it common in a large
ETL to have an error output from every component in the DF?
June 6, 2012 at 7:27 am
I am looking for a slick alternative to minimize clutter in the package.
June 6, 2012 at 7:18 am
I guess my question boils down to this :
Is there a way to continue processing rows after encountering the first
error in a dataflow task without using row re-direction?
thanks
May 30, 2012 at 11:57 am
that's correct.
the OnError event handler is a stored proc which inserts rows into a row-level error table.
it also inserts system variables (package name, user name) into a container specific table.
the...
May 30, 2012 at 7:13 am
yeah I am trying get away from row redirection.
basically I want to leave the rows that have errors in the source table,
and just flag them with 'Error' in some flag...
May 29, 2012 at 1:27 pm
Ok thanks
What I am trying to do is use flagging instead of row redirection.
For example :
Source data has 10 rows
There is an error in row 3 (say violates null constraint...
May 29, 2012 at 1:17 pm
Viewing 15 posts - 1 through 15 (of 15 total)