Viewing 15 posts - 22,156 through 22,170 (of 39,824 total)
Why do you want to update the ID field? Typically these are primary keys for each table, which means that they are not updateable.
If you have fields from two tables...
September 29, 2009 at 8:40 am
I'd add a third note that you need to get a consultant on site to help you understand this. Your questions indicate that you don't really understand what you are...
September 29, 2009 at 8:37 am
select * is resolved into the actual column names at compile time. If you have changed columns, then it might start to fail. This is why you never use SELECT...
September 29, 2009 at 8:29 am
thanks for the update. The other thing you can try is to script out replication and then re-run the scripts to set things up.
September 29, 2009 at 8:26 am
If I remember, you need a trace file of activity on the system and DTA will analyze it. It wasn't as good in 2000 as it is in 2005/2008. Tends...
September 29, 2009 at 7:31 am
there isn't necessarily any improvement from having the dbs in separate instances. You are now sharing memory, which is an issue on 32 bit systems. You have to set the...
September 28, 2009 at 11:44 pm
Wow, sounds like you have a busy job ahead of you.
I'd look to do a few things. First, see if the clustered indexes make sense. They might all be created...
September 28, 2009 at 9:49 pm
If you reindex, and then shrink without just truncating off the end, you may re-fragment the indexes.
I would recommend you shrink to a level that will let you work with...
September 28, 2009 at 1:46 pm
I would use the link above. I don't have a procedure I've used. You can also search for FineBuild on Codeplex. Ed Vassie has built a great utility for slipping...
September 28, 2009 at 1:20 pm
Yes, sorry, was providing the idea there.
The code should look like:
declare @cmd varchar(max)
select @cmd = 'alter database test modify file ( size = ' + @required_size + ' MB)'
exec(...
September 28, 2009 at 1:17 pm
I've had good and bad experiences with Microsoft. By and large, however, I think that most of their software works well when it is released. There are bugs, but it's...
September 28, 2009 at 1:09 pm
DRP is typically disaster recovery plan. Be ready in case you create your own disaster. Know what exact build number you have, and you may want to script out jobs/alerts/packages...
September 28, 2009 at 11:14 am
Make sure you have good backups.
The data files and log files will get attached to the new instance when it's upgraded, and they'll be migrated to the new formats as...
September 28, 2009 at 10:07 am
Thanks for the update and resolution.
September 28, 2009 at 10:05 am
Separate backup file for each backup.
The maintenance plans have a maintenance cleanup that does this well. We used to script something, but the maint plan item does it better. You...
September 28, 2009 at 9:59 am
Viewing 15 posts - 22,156 through 22,170 (of 39,824 total)