Viewing 15 posts - 3,841 through 3,855 (of 6,679 total)
Jeff Moden (5/9/2010)
Jeffrey Williams-493691 (5/9/2010)
I don't see any reason to worry about which rows you have updated and/or tracking that in the temp table.
Keeps the locking localized to just a...
May 9, 2010 at 10:16 pm
I think you're over thinking this a bit - if I am understanding the relationship correctly. Since the ID's in both tables match, you really don't need to track...
May 9, 2010 at 9:56 pm
brutsoft (5/9/2010)
May 9, 2010 at 9:42 pm
How are the SSIS packages configured to run? Are they setup to use windows authentication?
If so, does the network account have a separate login to SQL Server with the...
May 9, 2010 at 9:39 pm
I answered this over on SQL Team also, so check back there for that response. Basically, your trigger is going to fail for multiple rows on this:
IF (SELECT Age...
May 9, 2010 at 1:53 pm
What account is running SQL Server?
May 9, 2010 at 11:11 am
Perry Whittle (5/8/2010)
specifically, ensure you run DBCC UPDATEUSAGE against the database.
And, you also want to make sure you run DBCC CHECKDB {database} WITH DATA_PURITY and get a clean result. ...
May 8, 2010 at 11:38 am
Yes, you are right in assuming that views don't have cached plans. The queries that use the views will have a cached plan - but not the view itself.
May 6, 2010 at 10:00 pm
Probably neither - since the view will be expanded into the calling query there wouldn't be any difference in the actual execution plan.
I would create a view if the logic...
May 6, 2010 at 9:52 pm
craig-404139 (5/6/2010)
May 6, 2010 at 9:45 pm
Yes - the utilities in SQL Server to remove backup files will only remove actual SQL Server created files. You could try setting up the job to remove text...
May 6, 2010 at 2:11 pm
Grant Fritchey (5/5/2010)
May 5, 2010 at 7:35 pm
What is the full error message? It is not showing up in the title.
I suspect, based upon a quick google search that your problem is because you don't have...
May 5, 2010 at 7:26 pm
I've got to say that with that much memory and cpu's, with only a 28-30GB database, if you are still having performance issues then your problems are either IO related...
May 5, 2010 at 6:38 pm
Viewing 15 posts - 3,841 through 3,855 (of 6,679 total)