Forum Replies Created

Viewing 15 posts - 541 through 555 (of 628 total)

  • RE: Microsoft Office Excel and SSIS

    If you use the Excel destination in your dataflow you do not have to have Excel installed on the server.

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Table statistics and creating new index

    depending on the Query structure it may have been running the plan from procedure cache rather than re process the Execution plan.

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: SSRS - Can I see the SQL statement from the Preview tab?

    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...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: How to retrieve and ID that occured the maximum number of times in a date range.

    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

    )...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: SQL Server Reporting Services - Problem with multi-value parm in SQL stmt

    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...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: inserting Commas

    Is it always after 1 char that you need the comma. for exmaple would it ever be

    A, BC,D

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: inserting Commas

    Can you post some sample data? that might help determine if this can be done.

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: SQL Server Reporting Services - Problem with multi-value parm in SQL stmt

    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...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: 64bit ssis scheduling

    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...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Database Restore – Permission

    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....

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Using Varaibles in Script component

    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?

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: SQL Server Reporting Services - Problem with multi-value parm in SQL stmt

    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...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: SQL Server Reporting Services - Problem with multi-value parm in SQL stmt

    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?

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: SQL Query

    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? ...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: is there a max size for the attachment size in msdb.dbo.sp_send_dbmail

    Here is a link to the article and how to change it.

    http://msdn.microsoft.com/en-us/library/ms186321.aspx

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

Viewing 15 posts - 541 through 555 (of 628 total)