Comparing Two SP's Performance SQL Server [closed] - sql

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
there is any simple way to know which one of two SQL Store procedure works better?

Click the Include Actual Execution Plan before running both sp (on the same run) and check the percentages

Related

Converting SQR into SQL to run in SQL Developer [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I am trying to convert (per010) SQR into a SQL to run in SQL Developer.
If you are using SQL Developer, that means that you have to work with a single SQL.
If I remember correctly, PER010 is the Turnover report. It would not be possible to turn this report into a single SQL since it pulls elements from multiple tables and multiple passes, for example Hires versus Terminations.

Why is Oracle database tables getting deleted when i close the run sql command line prompt? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
All the tables data is getting deleted when shutting down the run sql and command line. Also there is only one user.
i think, that you are missing commit; Check out Oracle documentation: https://docs.oracle.com/database/121/CNCPT/transact.htm#CNCPT037

Does SQL Server allow Multi table clustering? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
My question is simple.
Does SQL Server allow Multi table clustering?
No - SQL Server has the concept of clusters in which two or instances of SQL Server (the program) is running (or is available to run) and if one fails the other instance can very rapidly take over. They work on the same data which is stored in a shared drive. But only one is active at a time.

How to clean up elastic scale databases [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
While testing Elastic Scale I wanted to start over a couple of times without deleting the complete databases. Since this might save you some time I though I would share the following SQL to cleanup databases used for Elastic Scale Shards and the ShardMapsManager.

SQL Query - How to find a field with two or more same characters in it [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm using SQL Server DB and I would like to write query which will look for a fields with two or more slashes in it, lets say we have these rows:
1. abc/def/g
2. abcd/efg
3. a/b/c/d/e/f/g
So it should return 1st and 3rd row! What is the easiest way to do so?
Thanks in advance!