Update multiple Azure Sql Databases [closed] - sql-server

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
Currently, we have 12 Azure Sql Databases and typically 1 or more will need to be updated with a SQL query.
Today, I had a request to delete the same records from all 12.
Are there any tools or ways I can do this without having to connect to each one and running the query?

Aaron Bertrand's sp_foreachdb will let you do this by using the #database_list parameter.
Alternatively, there are third party plugins for SQL Server Management Studio that can do this, one which is Devart SQLComplete but only in the premium version (which does have a 30 day free trial)

Related

What should I use between MS SQL Server and MongoDb? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I am currently working on a project in ASP.Net Core which will have a large number of user in the future. Also, the application is being made through Agile Process, so that I have to be prepared for many changes and up-gradations in the future.
First, I was planning to use a MS SQL Server Database but recently I have seen that how awesome features MongoDb is providing especially for a developer. But, I have a confusion that using I MongoDb database will slow down my application when it become widely used by the people.
So, I am here to get some suggestions on choosing the database for my application.
MongoDB is one of the most popular document stores available both as a fully managed cloud service and for deployment on the self-managed infrastructure but it is Document store DB and SQL Server is Relational DBMS.
Performance highly depends on your requirement and design.
System Properties Comparison Microsoft SQL Server vs. MongoDB
MongoDB vs SQL Server 2016 Performance

Sql server certification exam [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am interested in taking sql server certification exams. I do not know where and how to go about it. I want to know the phases involved, server version, price, and the right course materials to aid me in the exam.
welcome to stackoverflow. I suggest you change your query to the MSDN forum
You can find information here MCSA - SQL Certification
the exams to complete the MCSA certification: SQL Server consists of three exams.
Querying Microsoft SQL Server 2012/2014
Administering Microsoft SQL Server 2012/2014 Databases
Implementing Data Warehouse with Microsoft SQL Server 2012/2014
each with an approximate value of 80 USD. resources for study you have many from books to tutorials, in edx.org there are courses that guide you to these certifications

SQL Data Sync still on preview [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
We have the need to sync an Azure SQL Database (PaaS) with a SQL Server on-premises instance (on customer’s DataCenter), as both are being fed with data from different systems. Both databases share the same schema, and we need the sync process to be bidirectional, where every 5 minutes the data from the Azure SQL Database goes down and every hour the data from the SQL Server (Standard) instance goes up.
We thought of using SQL Data Sync (https://learn.microsoft.com/en-us/azure/sql-database/sql-database-get-started-sql-data-sync), as its the most straightforward solution to achieve what we want, were almost no configuration or custom code is needed. The main problem is that it’s still on Preview, and it has been like that for some years. So, my questions are:
1) Why is it still on preview?
2) What other alternatives would you consider for this requirement, without losing transparency and performance?
PS: There's a similar question form almost 3 years ago (Is SQL Azure Data Sync Production Ready?)
It will be GA this month.
SSIS could be another solution but it requires certain domain knowledge and effort to create an maintain the solution.

Why is Microsoft Dynamics CRM so slow in my environment? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I'm working on an application that uses Microsoft Dynamics CRM. The CRM runs in a VM. CRM has its SQL database running on the very same VM. Alongside that CRM SQL database is a separate database used for parts of the application that don't directly use CRM.
Operations that query the non-CRM SQL database are lightning-fast, but operations that query CRM are molasses slow in the application.
In spite of this, queries run from SSMS on both the CRM and non-CRM SQL databases seem to be equally fast.
This seems to suggest that there is some aspect of my Dynamics CRM Server that is not performing well and needs to be tuned, but it isn't the SQL component?
How can I find what is make Dynamics CRM so slow?

Something like phpMyAdmin but for SQL Server? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for web based tool like phpMyAdmin, but for SQL Server. Any suggestions?
This works and is under active development:
http://www.adminer.org/
I've also found this product which seems to support SQL Server
You could try some thing from the list provided by Microsoft. Microsoft also apparently has a web admin, but it's rather old from what I can see. I'm interested in this area as well, so please report back on your conclusions.
-THIS MIGHT NOT BE THE ANSWER TO YOUR QUESTION-
if you have sql server managment studio(its free) you can connect to a SQL Server database remotely
I do not want to make self-ad, but definitively myLittleAdmin is what you're looking for. Note most of the serious windows webhosting companies are providing myLittleAdmin as a service to all their customers who use MS SQL databases.

Resources