Viewing 15 posts - 19,741 through 19,755 (of 26,484 total)
You need to break it down into batches, and run t-log backups between inserts. Is there a common primary key or unique between the two tables?
July 19, 2009 at 11:55 pm
Does anyone else get the feeling that some people think we are here to not only help and mentor others but to actually do their work for them with no...
July 19, 2009 at 11:52 pm
Gift Peddie (7/19/2009)
I also can't see the government getting involved in vendor level certifications, providing the opportunity is there equally for all groups.
That is very nice point get random...
July 19, 2009 at 11:29 pm
Gift Peddie (7/19/2009)
Considering that obtaining Vendor Certifications is voluntary, I really don't think there are legal grounds for any governmental organization to make such requests. If these certifications were required...
July 19, 2009 at 8:32 pm
Gift Peddie (7/18/2009)
July 19, 2009 at 5:13 pm
You mention Novell's CNE in your editorial, and twenty years ago I had considered trying to earn that certification as the company I worked for at the time had a...
July 18, 2009 at 1:16 pm
Curious, but would this work as well?
select
FiscalMonthDTTM,
left(datename(month,FiscalMonthDTTM),3) Mth,
Sum(case when TimeType='YVW Crib'
...
July 18, 2009 at 3:54 am
Here is a way to accomplish your task. First, you need the following function (or one similar):
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE function [dbo].[DelimitedSplit] (
@pString varchar(max),
...
July 18, 2009 at 3:45 am
Assuming that you are updating existing records, why not put a ModifiedDate column on the table and update that column when you update the row? Then you just have...
July 17, 2009 at 12:57 pm
So, how about DDL for the table(s), sample data, expected results based on the sample data, and most importantly what you have done so far to solve your problem.
Need help...
July 17, 2009 at 12:48 pm
maxyogesh2002 (7/17/2009)
Dear Friends,I m attached the JPEG of my Execution plan plz tell me Whats the problem in that query
why its taken lot of time to update.
First, I'd recommend...
July 17, 2009 at 10:57 am
jcrawf02 (7/17/2009)
Lynn Pettis (7/17/2009)[hr
So, what's stopping you from getting back out there? I'm sure that you could be used and abused just like the rest of us. It...
July 17, 2009 at 10:53 am
First, remember that no all errors can be trapped in in a TRY/CATCH setup.
Code your trigger to use TRY/CATCH. For the errors that can be caught, capture the error...
July 17, 2009 at 10:39 am
Just realize that it may not take all 14 GB of RAM. Not saying I wouldn't set the maximum memory available to SQL Server, I would; but the best...
July 17, 2009 at 10:33 am
jcrawf02 (7/17/2009)
Lynn Pettis (7/17/2009)
July 17, 2009 at 10:04 am
Viewing 15 posts - 19,741 through 19,755 (of 26,484 total)