SQL Server Management Studio 2012/ALL Tools Install thru Command Line - sql-server-2012

Ok I managed to find the site, but I'm getting tired and upset so I figured if anyone knew a command line to just install tools thru the command line. SSMS on the server is no longer allowing me to change Maintinance Plans, but it can run them just fine.
I've given up on resolving that issue after exhausting 3 hours worth of uninstall/reinstall/Register DLL/Blah/Blah/Blah. Go to install the tools on my assistance computer and the idiot uninstalled Internet Explorer so now you can't launch SQL Install from the disk.
So if anyone happens to know the syntax I'd appreciate it very much, I just need the tools I don't need anything else. SSDT/SSMS/ and the like.
http://msdn.microsoft.com/en-us/library/ms144259.aspx

Try using
setup.exe /ACTION="Install" /IACCEPTSQLSERVERLICENSETERMS /Q /INDICATEPROGRESS /FEATURES="Tools"

Related

npm mssql package intellisense not working when im offline?

I'm currently working on a nodejs project in an offline domain and came across this issue that I cant seem to find anything about.
Apparently even after installing the mssql package in visual studio code, intellisense only works when i have network.
if that helps, I installed the package from an online computer and then moved it to the offline computer, but the same problem shows even if i just unplug my computer and reopen vscode.
its also worth mentioning that packages like express and morgan does have intellisense even when offline.
Is there an option to also save the package's intellisense locally?
thanks!
mssql package: https://www.npmjs.com/package/mssql
So as it turns out, and even though I checked multiple times if it's network related or not, the problem were with some settings that I set up 2 years ago when I were coding with powershell.
Removing it worked, so always take a look at the vscode settings (suggestions/intellisense categories)

SSMS 18.4 Crashes when we attempt to script entire database

We just started noticing this. It used to work, and now it doesn't. The crash happens on all of our computers. We right click on a database, select Script Database..., choose to script the entire database and SSMS crashes. No information in the Event Logs. We've found that if we script all tables, it works. If we also script all stored procedures and functions, it crashes. All of our databases are in Azure. Haven't tried local DBs. Any ideas how to troubleshoot?
Thank you,
Mike
It might be a bit late to answer but it might help someone;
I had the same issue recently, upgraded to the latest version 18.12.1 and it now works fine;
Check Download SSMS 18.12.1
Click on "Free Download for SQL Server Management Studio (SSMS) 18.12.1"
and run the installed file "SSMS-Setup-ENU.exe" as an administrator and follow the wizard.

npm fails saying "The build tools for VS2010 cannot be found"

I'm trying to install Hubot on my local machine. Going well so far until I have encountered this error. The Error is pretty clear:
Building the projects in this solution one at a time. To enable parallel build, please add the "/m" switch.
However I am running the Hubot Initialization command Yo Hubot. And I am not able to use the /m switch. Any suggestions or advice on what I should do?
Enabling parallel build will not solve you problem, that one is just an informative message. The real problem is you don't have the Visual Studio version that was used to create one of the components Hubot needs.
Try this: npm config set msvs_version 2012 (or 2013 if you have that one).

Failure installing SQL Server 2008 R2 Express X64

I am having a serious problem installing this (from web platform installer and from the downloaded installer). I have a laptop with win7 x64 enterprise on it.
I have read the forums and tried all the solutions I have found, from permissions, .NET framework to copying the setup files etc. These did help move the install on but in the end it always fails for the database. I have tried following MS advice on trying to read the log files to see where it fails which is why I looked at some of the solutions but the fixes didn't work. What makes it worse is the solutions for retrying the install (removal of things from the registry) has made things worse on the laptop as other stings stop working every time I remove the SQL keys.
I was hoping someone here could look over the logs to see if they could give me a better indication of whats wrong. Problem is I can't see a way of attaching a zip file here

Compile error in VS.NET 2008 (VB.NET) that I can't get rid of!

I can't shake this error when compiling my Visual Studio.NET 2008 solution. The project that's generating the error is a VB.NET Web Application in a 12 project solution (mixed types and languages).
I've tried all the tricks I can find on google, and the obvious of removing the directoy and folder manually.
I'm running Vista Business 32 with VS.NET 2008 SP1. This just started happening out of the blue today and I've rebooted a bunch and even re-applied SP1 for VS.NET.
Any ideas or has anybody seen this?
vbc : error BC31019: Unable to write to output file 'G:\Projects\TCA.NET\TcaNet\WebUI\obj\Debug\TcaNet.WebUI.pdb': Unspecified error
Update:
After thinking about this and not finding any solutions from answers or via the Internet, I went ahead and moved my entire solution to my C:\ drive vs. my G:\ drive (both are local). Doing this fixed my compile problem for some reason.
I had the same error a few weeks ago when I was compiling on my server from my laptop. Turns out that if G: is a network drive, this could fail. Microsoft have said that fixing this is not a priority, and that there's much better ways of doing things (such as source control). For a one-man project though, it's a pain.
Restart IIS on local.
If that's not the issue then, install Unlocker and try to delete that pdb file when you get the error, Unlocker will tell you which process is holding an open handle to that file.
I have found a list of thing to try to fix your problem :
Zen-turkey Fix list
Hope this help!
maybe it is a dependency problem. check the build order of all the projects..
sysinternals tools should be of help here. using process explorer, are you able to find out if any process is locking this file? another useful tool is process monitor. after applying a filter for the pdb file, capture a trace of all file access activity..
It's probably bug in VB.NET compiler. The error message is incorrect, the real problem is missing file referenced from the project file. For example .vb file.
In my case, I found the missing file and added it, then devenv compiled fine again.
Someone reported that to MS here
Although it is very old thread, but I got this error today and the following link solved it. Hope it help someone reading this.
VB.NET .pdb fix
After thinking about this and not finding any solutions from answers or via the Internet, I went ahead and moved my entire solution to my C:\ drive vs. my G:\ drive (both are local). Doing this fixed my compile problem for some reason.
I had this in Visual Studio 2005 except it was Error 1. I restarted my machine and it fixed the problem.