Viewing 15 posts - 9,571 through 9,585 (of 9,641 total)
Have you deployed a shared datasource? If not you can create the datasource in Report Manager under report properties->datasource.
March 19, 2004 at 2:01 pm
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...
March 19, 2004 at 10:16 am
Is there anything in the table to differentiate the records? Why do you need to move the data to other tables?
March 19, 2004 at 10:06 am
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...
March 18, 2004 at 6:59 am
Typo on my part down in the delete satement. It says @deletesconsumerid instead of @deleteconsumerid.
March 12, 2004 at 6:56 pm
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...
March 12, 2004 at 2:45 pm
An insert, update trigger using charindex or patindex will work.
March 12, 2004 at 2:39 pm
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...
March 12, 2004 at 2:35 pm
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...
March 12, 2004 at 2:22 pm
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
March 12, 2004 at 2:14 pm
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...
March 12, 2004 at 2:07 pm
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...
March 12, 2004 at 1:55 pm
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...
March 12, 2004 at 6:38 am
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.
March 8, 2004 at 7:45 am
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...
March 5, 2004 at 3:35 pm
Viewing 15 posts - 9,571 through 9,585 (of 9,641 total)