Viewing 15 posts - 541 through 555 (of 629 total)
If you use the Excel destination in your dataflow you do not have to have Excel installed on the server.
May 6, 2010 at 8:43 am
depending on the Query structure it may have been running the plan from procedure cache rather than re process the Execution plan.
May 6, 2010 at 8:41 am
Something I have done in the past is create a copy of the report.
Change my Query in the data set to something like.
Declare @stmt varchar(max)
set @stmt='Select * from table'
Select @stmt
Then...
May 6, 2010 at 8:31 am
This would select the top UserID.
Select Top 1 t.* from
(
select Userid,count(*) as UseridCount
from mt_temp
where
UploadDate < convert (char(12),(dateadd(day,(0-(select datepart(weekday,getdate()))),getdate())))
and UploadDate > convert (char(12),(dateadd(day,((0-(select datepart(weekday,getdate())))-7),getdate())))
group by Userid
)...
May 5, 2010 at 12:45 pm
I am not saying you are wrong but the fundementals of SQL dictate that it is looking for Columnname=criteria. I have never seen any variation of that. Having the...
May 5, 2010 at 11:15 am
Is it always after 1 char that you need the comma. for exmaple would it ever be
A, BC,D
May 5, 2010 at 10:09 am
Can you post some sample data? that might help determine if this can be done.
May 5, 2010 at 9:48 am
I just realized where the error is.
I am not sure how the second group or the third group could possibly work on thee own.
In the secon group you have (@Service...
May 5, 2010 at 9:19 am
This may be a silly question but did you verify that the server and the user executing the job has access to the path of the Access DB. I...
May 5, 2010 at 8:32 am
You have a permission issue to over come before you can do anything. DBO is simply a schema and does not grant you the permission to restore a database....
May 5, 2010 at 8:24 am
you talk about using the variable as the output row so I assume you are talking about using a script transform in a data flow is that correct?
May 5, 2010 at 8:18 am
If you read the previous post before I edited it I apologize I miss read your where clause to start with.
I had to copy and past it out to a...
May 5, 2010 at 8:02 am
based on what you said and based on your where clause are you intending all the statements in between the OR's to be one group?
May 5, 2010 at 7:36 am
We need a little more information to help you.
First question is how will this e-mail be sent? will this be a job that runs every day? ...
May 5, 2010 at 7:12 am
I guess I should note a distinction that may be ware the original post is catching the error as well.
If we create a brand new package then we have no...
May 4, 2010 at 3:31 pm
Viewing 15 posts - 541 through 555 (of 629 total)