Questions tagged [rebuild]
343 questions
0
votes
2 answers
Incorrect syntax near 'Activity' in REBUILD_INDEX SP
Below is the stored procedure used for REBUILD_INDEX of DB tables, It was executing fine before but when I checked now it is showing below error,
Msg 102, Level 15, State 1, Line 3
Incorrect syntax near 'Activity'.
Msg 319, Level 15, State 1,…

Sathiya Kumar V M
- 507
- 12
- 34
0
votes
1 answer
Solution rebuild fails 30% of the time
We have over 100 projects in a Solution and some of the projects include other projects as project references. The Clean-Build/Rebuild took too much time, so I searched and found a pretty good solution for optimizing the build/rebuild time:
Setting…

ursyka
- 51
- 8
0
votes
1 answer
Npm build not working
I have an npm module written in typescript.
However, when I rename a certain class and try npm rebuild the build folder still contains the old module name. This is still a problem even after I change the class name in .js folder, in…

Joël Abrahams
- 379
- 4
- 15
0
votes
1 answer
Index Rebuild Takes Time Causing Timeouts
We are using SQL Server Standard Edition (AWS RDS).
We are using index rebuild tool by Ola Hallengren.
This rebuild agent job takes time causing timeouts.
We divided this job into two, first containing rebuild for one single large table and the…

Lalit Bhatt
- 115
- 9
0
votes
2 answers
How to rebuild solution using NAnt?
I am using following command in NAnt build file
appsdest and targetname are variable contain application project path and targetname is the variable contain project name to be…

SCM
- 2,065
- 2
- 14
- 15
0
votes
0 answers
Vs 2013 Ultimate Build Error or View in Browser error
When I try Build, Rebuild , View on browser click the error is.This error comes after I publish my project to azure
Error 3 The command "if Release == Release NuGet.exe pack…

Alican Kablan
- 399
- 8
- 17
0
votes
1 answer
c# rebuilding is running part of my program(loading a user control), and clicking play can cause a rebuild and run it twice
I have an issue with my program which i've managed to narrow down into some example code.
Added Note- http://ge.tt/7paP1Gj2 <--- a link to my code 70KB zip file.
c# rebuilding is running part of my program(loading a user control), and clicking…

barlop
- 12,887
- 8
- 80
- 109
0
votes
1 answer
Suppress reorg rebuild sysmessages in sybase stored proc
I have a stored procedure in Sybase that uses reorg rebuild statement in a loop for all the tables in my database. What I want to do is to suppress the reorg rebuild sysmessages for tables that succedeed the procedure and only to print the tables…

sgian76
- 89
- 1
- 7
0
votes
1 answer
C++ Writing Binary Dump and Writing to Binary from Dump
I am stumped and need some assistance.
In one of my programs, I am implementing some code so that I can take a program on Windows and essentially do a hexdump (what you see in hex editors) where I convert it to binary and write that to a .txt…

Giovanni
- 33
- 8
0
votes
1 answer
How to read the output window of Visual Studio in an efficient way?
Do you know any guideline or if you have mastered your own way of reading the output window of the VS after a failed build to gather the most important notes in a shortest time?

pencilCake
- 51,323
- 85
- 226
- 363
0
votes
0 answers
Error while rebuilding tcl 8.5 to disabling threadings
Im on installation of Squert Dashboard for suricata on Ubuntu Xenial 16.04 LTS
Before install Squert I need to install Sguil (sgweel), sguil need tcl 8.3 (or better) and I found in source the current version of tcl is 8.5 so I installed it and run…

Ilies
- 13
- 1
- 4
0
votes
1 answer
Why are there two sets of Build and Rebuild options in my ASP.NET project?
It seems as if the success of building my ASP.NET (targeting .NET 3.5) project at least sometimes depends on whether I build it as a project or as a website.
I have these [re]build options beneath the Build menu:
Rebuild Project
Build…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
0
votes
0 answers
Is it possible to show a confirm dialog when 'Rebuild' is clicked on?
If so, how?
I keep on accidentally clicking on 'Rebuild' instead of 'Build' because they are right next to eachother.
I want a messagebox to show something like "Are you sure you want to rebuild this solution?", cancel the event if the user clicks…

Maria
- 3
- 1
- 4
0
votes
1 answer
CPPPATH doesn't seem to work with scons?
while reading the man page of scons, my understanding was, scons doesn't always realize when a header file is changed, cpp source files should also change. I did an experiment, but only to find, whether we have CPPPATH specified or not, seems scons…

Troskyvs
- 7,537
- 7
- 47
- 115
0
votes
1 answer
When changing the comment of a .c file, scons still re-compile it?
It's said that scons uses MD5 signature as default decider to dertermine whether a source file needs re-compilation. E.g. I've got SConstruct as below:
Library('o.c')
And my o.c is:
$ cat o.c
/*commented*/
#include
int f(){
…

Troskyvs
- 7,537
- 7
- 47
- 115