rebuild

Reorganise index vs Rebuild Index in Sql Server Maintenance plan

In the SSW rules to better SQL Server Database there is an example of a full database maintenance plan: SSW. In the example they run both a Reorganize Index and then a Rebuild Index and then Update Statistics. Is there any point to this? I thought Reorganize Index was a fast but less effective version of Rebuild Index? and that an index ...

Finding errors / warnings in Visual Studio

I have experienced an annoying issue with Visual Studio 2005... sometimes when I rebuild, and even if I do a Rebuild Solution, it will come back with no errors or warnings, but then when I later edit another code file, even without changing it, and rebuild, it will find an error or warning in that other file. Clearly, the earlier Rebuil...

What do I need to re-build my web server?

I am getting ready to completely overhaul my web server. I use it for both development and to present product to clients. It also hosts my company website. I will be loading MS Server 2008 and MS SQL 2008. I want it to have the latest .NET Framework as well as the latest MVC templates. I want it to use SubSonic. I also want to start usi...

Fedora 8 howto rebuild custom PHP?

Hello, I am running a wiki server for my group at work and recently moved it to a Fedora 8 OS. Everything works great except that an extension I wrote that contacts an MsSql server fails because the function mssql_connect is not there. On my old server I used "Free TDS" (with ./configure --prefix=/usr/local/freetds --enable-msdblib) an...

At what point does refactoring become not worth it?

Say you have a program that currently functions the way it is supposed to. The application has very poor code behind it, eats up a lot of memory, is unscalable and would take major rewriting to implement any changes in functionality. At what point does refactoring become less logical then a total rebuild? ...

Why is Visual Studio 2008 always rebuilding my whole project?

I have a Visual Studio project with about 60 C++ source files. I can do a build, and it completes without errors. But if I immediately hit F7 again, it always re-compiles about 50 of the source files. It doesn't re-compile all of the files, which is strange. I have 'Enable minimal rebuild' (/Gm) set. Any ideas why it might be doing this...

Make Visual Studio stop rebuilding up-to-date projects?

Why does Visual Studio always build a project before running it EVEN WHEN IT'S NOT OUT OF DATE? Is there any way to skip this annoying behavior? ...

Difference between Rebuild and Clean + Build in Visual Studio 2008

What is the difference between just a Rebuild and doing a Clean + Build in Visual Studio 2008? Is Clean + Build different then doing Clean + Rebuild? ...

svn recovery - restoring individual revisions

Regardless of how I got here, I'm in the position of restoring a SVN repository from backup. Unfortunately the backup was slightly corrupted and out of over 19000 revisions, approximately 80 are lost. The backup was a bzip2 file and I was able to use bzip2recover to recover about 99% of the blocks. These are 'known good' since they decom...

[Visual Studio] How to rebuild ALL?

In Visual Studio, how do I rebuild a complete solution, including all configurations? If I choose "Rebuild solution", it always rebuilds ONLY Debug or ONLY Release, but never both. ...

visual studio accidentally rebuild problem

Hi, many times i accidentally click on "rebuild" when i plan just to click on "build". This rebuild process may take so long time if there are dependencies of this project... do you know any plug-in or a configuration that makes visual studio to ask me if i am sure to rebuild this project... i hope there is a way to handle this situat...

Visual Studio 2008 forces me to Rebuild Web Site every time to effect any changes I make

Hi, I have been using Visual Studio 2008 for the past 2 years or so. Recently, in 2 particular ASP.NET (with VB.NET) web sites I am forced to do a Rebuild Solution after any change, no matter how minor, even if it's just an HTML change. In other words, I cannot load the application into the browser and make an HTML change and hit F5 as...

replace rebuilded module JAR in the EAR (Maven2 project)

Hello. During the development time I'm iteratively rebuilding some modules of my project. Rebuilding resulting ear-project gets a huge amount of time. If there is a way allowing to rebuild only jar file of changed module and then replace this jar in resulting EAR then it could reduce build time and accelerate development process. So qu...

What does the 'Rebuild All' setting do?

In visual studio, there is an option to "Rebuild All" from the build menu, what exactly does it do? ...

What causes transient aspx first line compile errors?

Every once in a while, when I'm editing an aspx or ascx page, Visual Studio will start telling me there is an error on the first line of my file. For instance, right now, it is saying Argument missing on line 1. That line is just your typical header, with no apparent problems (to my eyes), and I hadn't even changed that one when the erro...

VS2005 rebuilds .NET/CLI projects on implementation detail changes in .cpp files

My solution consists of several native, C++/CLI wrapper and managed libraries/assemblies. The wrapper projects are referencing different native DLL-projects. Every time i change an implementation detail in a .cpp file of a native dependency, all CLI/.NET projects are rebuilt (not just linked, but recompiled). This also happens in the Deb...

Rebuild N-tier app into Service-Oriented Architecture (SOA)?

Considering the regular characteristics of an n-tier app with layers like: presentation, business, data access; how is this normally rebuilt to make a Service-Oriented Architecture (SOA)? Seeking high level overview from programmers experienced in this exercise. To a degree I picture it conceptually flattening out rather than having ...

SQL Server 2008 Full Text Rebuild - Large Memory Usage Issue

Each time I perform a SQL Server 2008 FTS Catalog Rebuild, my server is left in a state where the SQL Server process is at 2.8+ GB of memory and is causing performance degradation of the machine. When recycling the SQL Server service, its goes back down to around 350 MB and performance is back to normal. Is it normal to have to restart...

Visual Studio 2008 Post Build event -- only run on Rebuild

Hi, In Visual Studio 2008 we run a post build event which calls NANT and in turn creates our config files. e.g. if $(SolutionDir) == . GOTO end nant -buildfile:$(SolutionDir)default.build create..web.config Is there a way to run this only on ReBuild? Thanks ...

Resuming MySQL indexing

Hello All, I have been building index on a 200 million row table for almost 14 hours. Due to resource over-consumption on the machine (because of a separate incident), the machine cashed. Clearly, I want to avoid another 14 hours to re-construct the index. Is there a way that I can resume the construction of index from the point (or sli...