Questions tagged [rebuild]
343 questions
0
votes
1 answer
How do you perform large queries at the same time with the index job?
I have a large database (size 1.7 TB) and have a maintenance index job to rebuild-reorganize indexes. This job is scheduled at 11:00 pm.
This morning, i was just checking the queries that running on the server and i noticed that the index job is…

Yasin Bilir
- 194
- 3
- 17
0
votes
1 answer
SQL Server 2005 Index rebuild when increasing the size of a varchar field
I have a 12 varchar(50) fields in a table of about 90 million rows that I need to increase to varchar(100) in length. Each of these fields has an index (with only the one field as a member). If I increase the length of the varchar fields, will the…

Brian
- 1
0
votes
1 answer
Receiving Fatal Error c1083, Cannot open include file stddef.h while building node-gyp in Aurelia Project
I am been facing this problem for weeks now, with no hope of being solved. I am new to Aurelia JavaScript Framework and I am getting grips around the skeleton project hosted on github.
I have successfully installed nodejs, npm and jspm. As part of…

realnsleo
- 709
- 2
- 12
- 29
0
votes
1 answer
Pushy Integration Execution failed for task ':app:transformClassesWithJarMergingForDebug'
I am attempting to integrate Pushy (https://pushy.me/) into my app to allow for more reliable real-time notifications, in place of GCM.
However, upon attempting to run the app, the error below appears:
Error:Execution failed for task…

Sauron
- 6,399
- 14
- 71
- 136
0
votes
1 answer
µVISION: BUILD TARGET ALWAYS RECOMPILES ALL FILES
µVision v.5.01 retranslates all files in my project when I'm using Project - Build target. However, I have made no changes to my files and the the µVision built-in MAKE should check the timestamp to see that there are no changes. I have made sure TZ…

Victor Che
- 75
- 7
0
votes
1 answer
npm install, node-gyp rebuild error
I'm just starting out working with node.js and when I try npm install I get an error stating Failed at the bcrypt@0.8.5 install script 'node-gyp rebuild'. After extensive googling I still have not found the problem.
Here's the error log:
Error…

Cees
- 1
- 1
- 2
0
votes
0 answers
SQL Server 2008 R2 folder missing in system
During rebuilding master database in SQL Server, I tried the steps mentioned int he link below:
link
But I am getting an error
Error code: 2 error
so as mentioned there and other sources I want to change my command prompt path from:
C:\Program…

Devanshi Prajapati
- 37
- 8
0
votes
1 answer
Automatically rebuild referenced Class Libraries (DLLs) in VS2010?
I have an executable project A, which references to a Class Library project B. However, when I build A, it does not automatically rebuild B. The only way to get B rebuilt and used by A is to rebuild B then build A.
Is there a way I can get B to be…

Callum Rogers
- 15,630
- 17
- 67
- 90
0
votes
2 answers
Rebulid a variable that sent by reference
this is my code
void SMatrix::pow(int power, SMatrix & result)
{
if (this->rowSize != this->colSize || this->rowSize != result.rowSize || this->colSize != result.colSize || power <= 0)
{
delete & result;
…

Ben
- 201
- 1
- 4
- 13
0
votes
2 answers
Destroy and rebuild object on button clicked in Qt
This is a basic example that I need to get to work to use it in my project.
I need someone to help to destroy and rebuild an object on a button click. What I mean is:
//mainwindow.cpp
{//constructor
ui->setupUi(this);
/*private*/frame…

Scaramouche
- 3,188
- 2
- 20
- 46
0
votes
1 answer
Neo4j: How do you rebuild the label scan store?
I shut down my Neo4J instance every night to do a backup. This morning I found that it failed to start up again:
2015-12-05 03:38:49.326+0000 INFO Successfully shutdown Neo4j Server
2015-12-05 03:38:49.330+0000 ERROR Failed to start Neo4j: Starting…

sbs
- 1,139
- 3
- 13
- 19
0
votes
0 answers
Visual Studio Extension Build Solution error 0x
I have this code for clean, build and run solution as Visual Studio Extension
Dim dte As DTE = Activator.CreateInstance(Type.GetTypeFromProgID("VisualStudio.DTE.14.0"))
Dim sb As SolutionBuild = dte.Solution.SolutionBuild
sb.Clean(True) '…

Misaz
- 3,694
- 2
- 26
- 42
0
votes
1 answer
Index Defragmentation in SQL Server 2012
I'm running different scripts from SQLFOOL & SQL Authorities an etc. but when I check the database I cannot see any defragmentation at all. I wrote a bit code which is not working, could you please give me a hand?
Declare @table_name Varchar…

siavash
- 1
- 4
0
votes
2 answers
Rebuild cscope in emacs
I have cscope built-in in emacs.
When ever I change the code using emacs. The code change causes cscope to not behave the way I want it to.
eg.
Due to code change If I want to jump to the function definition. cscope does not take me to the…

Deepak
- 373
- 1
- 2
- 7
0
votes
1 answer
Do I need to rebuild if a java object I derive from changes in size?
I tried searching for an answer and was unsuccessful. If a class which I derive from which is contained in a jar changes in size, do I need to rebuild my code? By the way, I'm new to java.
I'm pretty sure in C++ the answer is yes. I think a 'new'…
user4238474