Viewing 9 posts - 61 through 69 (of 69 total)
Does your SQL Server Agent service account have administrator rights? Try adding your account in there and restart the service and see if it runs then...
June 5, 2008 at 4:47 am
Check the REPLACE function in BOL:
REPLACE ( 'string_expression1' , 'string_expression2' , 'string_expression3' )
SELECT REPLACE ( 'text1, text2, text3' , ',' , '-' )
June 3, 2008 at 7:34 am
Change the database name under your configuration deployment properties to a different name and deploy it... A new database will be created on your Analysis Server which you can use...
May 30, 2008 at 3:19 am
Create a Report Server project and add a data source connecting to your cube.
May 30, 2008 at 3:08 am
You will need to use expressions to update the variable and properties of your package. Read up on Expressions in SSIS.
May 28, 2008 at 2:08 am
Try this:
select
c1.company,
(
select
c.dept + ', ' as [text()]
from
comp c
where
c.company = c1.company
order by
dept
for xml path ('')
) as Department
from
(select distinct company from comp) c1
Just change the query...
May 27, 2008 at 5:11 am
SSIS could be used for this type of extraction.
May 21, 2008 at 9:23 am
Try adding the user to the Analysis Server Properties Security page...
May 21, 2008 at 9:10 am
Viewing 9 posts - 61 through 69 (of 69 total)