Forum Replies Created

Viewing 15 posts - 9,571 through 9,585 (of 9,641 total)

  • RE: Error generating report (rsErrorOpeningConnection)

    Have you deployed a shared datasource?  If not you can create the datasource in Report Manager under report properties->datasource.

  • RE: Comparing Data in a Trigger

    I thought something like that might be te case so having an audit table that you are inserting into can really give you a history of what is going on...

  • RE: How can i show in Table evry third record (row)

    Is there anything in the table to differentiate the records?  Why do you need to move the data to other tables?

  • RE: Comparing Data in a Trigger

    What are doing with @msg after it is set?  Because as noel said what you are doing a=only works for single row updates.  IF you are logging the action in a...

  • RE: Break down a delete statement

    Typo on my part down in the delete satement.  It says @deletesconsumerid instead of @deleteconsumerid.

     

  • RE: Using transactions and output parameters

    My guess is that you should have:

    rollback tran

    Set @result = -1

    In that order.  I did not see the Set so I do not know how oyou were successfully creating...

  • RE: How to split row to columns

    An insert, update trigger using charindex or patindex will work.

  • RE: What am I missing?

    I have never tried what you are trying.  I usually explicitly create temp tables in my sp's because it helps reduce compiles.  What is the point of adding the new...

  • RE: Break down a delete statement

    How about:

    Declare @deleteconsumerid table (pk int identity(1,1), cons_id Int), @rows Int

    Set @rows = 1000

    While (Select count(*) From @deleteconsumerid) > 0

    Begin

    delete A from con.dbo.acct A Join @deletesconsumerid D On A.consumer_id = D.cons_id...

  • RE: sproc problemmmm

    I have encountered the same issue with sp's in RS.  I do not use the wizard.  In the generic query designer I type in the sp name, rptDailyCumulativeProdSummaryByBussUnit

  • RE: Subscription can not be created

    I encountered the same problem.  In order to create asubscription you need to go to the report and the properties tab -> data sources. Selct use a custom data source and...

  • RE: Reporting Services Books

    Since, according to Lee, the book was not very good and Amazon had a problem and could not ship the book until April 26th I cancelled.  I have since figured...

  • RE: System freezes

    If you can see the blocks you can run run DBCC InputBuffer(@spid) to see what command is running for that spid.  You should also run sp_lock @spid where @spid ifs...

  • RE: SQL query help to save my bacon

    You could save yourself a lot of heartache if you put a unique index (constraint) on team_id, player_id and season_id then you could not insert duplicates without an error.

  • RE: insert trigger question

    In sql server triggers fire for a statement.  Meaning that if you insert 10 rows in a single sattement the inserted table contains 10 rows.  I am not sure what...

Viewing 15 posts - 9,571 through 9,585 (of 9,641 total)