Viewing 15 posts - 4,156 through 4,170 (of 7,496 total)
did you log grow over night to 17 Gb ?
or is it due to the fact you do not make log-backups ?
In full recovery mode, you need to make log-backups...
January 12, 2009 at 12:31 pm
you should be able to update directly to SP3.
There is a CU1 for sp3, but you'll have to check it the items fixed would match your usage environment.
January 12, 2009 at 12:25 pm
Indeed, a word of caution should be said.
Undocumented surely means the behaviour may change with every hotfix/cumulative update/service pack/new version.
They may even be removed without any notification or alternative !
January 12, 2009 at 7:23 am
Books online has good info.
"create event notivication" and further...
Be sure to use the most recent one (dec.2008)
January 11, 2009 at 11:13 am
- figure out how many times the application calls the sproc in a single application run. (or how many times it executes the cmd-object)
it must be a loop of some...
January 10, 2009 at 10:59 am
Best is to run your code on a box where you have a sql2005 client installed.
If you need to run the code locally on a box, best is you...
January 10, 2009 at 7:56 am
Nicholas Cain (1/10/2009)
January 10, 2009 at 7:51 am
SQL Noob (1/9/2009)
January 10, 2009 at 5:03 am
Like Gail said, because it is a big sproc, with multiple functionallities, it may be hard to "just optimize by reading it" and therefor it is better to split it...
January 9, 2009 at 5:18 am
- an update trigger is fired by an update event at object level (table/view) !
(so not only from your sprocs, but also by all other update statements !)
- one...
January 9, 2009 at 1:28 am
- loose the dynamic sql ( http://www.sommarskog.se/dynamic_sql.html )
- why are you using the hints with the delete statements you are executing ??
- don't comment (--) lines in your...
January 9, 2009 at 12:49 am
Mark (1/9/2009)
ALTER PROCEDURE [dbo].[sp_UpdatePlays]
-- Add the parameters for the stored procedure here
@username varchar(50)
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
...
January 9, 2009 at 12:31 am
sampathsoft (1/8/2009)
...Want to do my own (in my sp)...
with regards to locking, in many cases this is not a good solution.
If you want to be ablosutely sure you don't update...
January 8, 2009 at 5:42 am
Viewing 15 posts - 4,156 through 4,170 (of 7,496 total)