Forum Replies Created

Viewing 15 posts - 1 through 15 (of 16 total)

  • RE: 3 or more txns in 3 hours

    CREATE TABLE [dbo].[SampleExcel2](

    [CustID] tinyint NULL,

    [TxnID] tinyint not NULL,

    [TxnTime] datetime NULL,

    [Amount] int NULL

    ) ON [PRIMARY]

    INSERT [dbo].[SampleExcel2] ([CustID], [TxnID], [TxnTime], [Amount]) VALUES (1, 1, '6/1/13 12:30 AM', 900)

    INSERT [dbo].[SampleExcel2] ([CustID], [TxnID], [TxnTime],...

  • RE: help needed for sql query

    @steve-2 - thanks for replying. But your query gives me a different result. Your query gives me the number of TIMES custA's status was changed (Ex: custA status1,...

  • RE: subscription issue

    The default date parameters are last 7 days and it should not be changed. However, I came up with another workaround which I figured out after playing around with it...

  • RE: Report runs fine, subscription fails

    No worries. It was a permission issue and my DBA gave the necessary permissions and it is working fine now.

  • RE: Report runs fine, subscription fails

    what is the error message on the subscription?

    For subscription sending email, in reportmanager, status says "Mail sent to ......." and I never got the email (checked junk folders as well).

    Fpr...

  • RE: Open SSIS package

    Thanks, Phil. I did that already, It gives me an error 'The configuration file name .... is not valid. Check the configuration file name.

  • RE: individual tablix for each group

    Thanks to all.

  • RE: parameter with different default and available values

    Hi Niraj,

    Thanks a lot for replying. You understood the requirement correctly. For parameter values, I have two datasets - one for default values (A,B,C) and one for available values ...

  • RE: buttons in ssrs

    Thanks for replying.

  • RE: ssis package help needed

    Thanks for replying. Datekey and the field it is matching is date only column (no time is being mentioned).

  • RE: ssis package help needed

    The data will get loaded once every week. Job that runs this SSIS package is set in such a way that the job will run once in a week and...

  • RE: ssis package help needed

    Any idea how to handle this date key. Also, the table doesn't get cleaned before it gets filled. So, I don't have to truncate the table.

  • RE: ssis package help needed

    I need to have the data from all three sources added at the same time and there shouldn't be any lag between them. You mentioned that the data flow should...

  • RE: ssis package help needed

    You understood my requirement correctly. Apart from data flow task, is the package not going to have anything??? is it going to be that simple??? Please reply.

  • RE: ssis package help needed

    Also, I wanted to mention that in my query source data is coming from three different servers and the destination is only one table. If I choose data flow, then...

Viewing 15 posts - 1 through 15 (of 16 total)