Viewing 14 posts - 1 through 14 (of 14 total)
Sorry I should have been more specific
This will replace the null PaymentDtTmStart in your stored proc with a minimum date and your
PaymentDtTmEnd with today's date .
...
July 24, 2008 at 7:46 am
Since this is a stored procedure, you could detect a null in the input variable and assign a value to the variable accourdingly ( if start date is null you...
July 24, 2008 at 7:27 am
Did you eliminate the sored procedure as the culprit in this case. How are the stored procedure run times, on the first day compared to a week after, when...
July 23, 2008 at 12:11 pm
Having an index on col1 in Table D might help to an extent. You might already be doing that...if so ignore this message
July 23, 2008 at 11:40 am
Sorry about that...it should be a stored procedure.
July 23, 2008 at 10:23 am
you could get max(batchID) in your trigger and use plus 1 for this batch.
You might have concurrency problems if you do this.
Another solution will be
Have table for next...
July 23, 2008 at 9:02 am
None mentioned about using the new rank , or row_number functions. It sure is possibe using them..
July 23, 2008 at 8:43 am
well, How about splitting the select and update statements. Declare another variable, select your aggregate data into the variable and use the data to update the table.
If you have multiple...
July 23, 2008 at 8:39 am
If you can you locate the report in the report manager website. Click on the report and then on properties and then click on Edit under report definition. ...
July 23, 2008 at 8:08 am
I know you are trying not to modify the stored procedure. But I don't think there is a way to add additional values to a dataset that is fetched...
June 5, 2008 at 3:37 pm
this sounds like a more easier solution than what I proposed.
June 5, 2008 at 2:26 pm
If you use this query you can get all tables in a database
select table_Name from information_schema.tables where table_Type = 'BASE TABLE'
Use a cursor / loop to loop thru the...
June 5, 2008 at 2:24 pm
Viewing 14 posts - 1 through 14 (of 14 total)