Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sql server #region

People also ask

Apa perbedaan dari MySQL dan Microsoft SQL Server?

Perbedaan utama antara SQL dan MySQL!SQL adalah bahasa query, sedangkan MySQL adalah database relasional yang menggunakan SQL untuk query database. sahabat data dapat menggunakan SQL untuk mengakses, memperbarui, dan memanipulasi data yang disimpan dalam database.

Jelaskan apa yang dimaksud dengan SQL Server?

Microsoft SQL Server merupakan aplikasi desktop database server yang bersifat client/server, karena memiliki komponen client, yang berfungsi menampilkan dan memanipulasi data; serta komponen server yang berfungsi menyimpan, memanggil, dan mengamankan database.

Microsoft SQL Server Management Studio untuk apa?

SQL Server Management Studio menyediakan alat untuk mengonfigurasi, memantau, dan mengelola instans SQL Server dan database. Gunakan SQL Server Management Studio untuk menyebarkan, memantau, dan meningkatkan komponen tingkat data yang digunakan oleh aplikasi Anda, serta membuat kueri dan skrip.

Apa saja yang bisa dilakukan menggunakan SQL Server?

SQL Server dapat melakukan tuning secara otomatis. Mengurangi database maintenance dan meningkatkan business uptime. Meningkatkan keamanan dan proteksi data yang sedang dipakai. Melakukan pelacakan Compliance dengan resources yang sophisticated.


Not really, Sorry! But...

Adding begin and end.. with a comment on the begin creates regions which would look like this...bit of hack though!

screenshot of begin end region code

Otherwise you can only expand and collapse you just can't dictate what should be expanded and collapsed. Not without a third-party tool such as SSMS Tools Pack.


(I am developer of SSMSBoost add-in for SSMS)

We have recently added support for this syntax into our SSMSBoost add-in.

--#region [Optional Name]
--#endregion

It has also an option to automatically "recognize" regions when opening scripts.


BEGIN...END works, you just have to add a commented section. The easiest way to do this is to add a section name! Another route is to add a comment block. See below:

BEGIN  -- Section Name
/* 
Comment block some stuff  --end comment should be on next line
*/

 --Very long query
SELECT * FROM FOO
SELECT * FROM BAR
END

Not out of the box in Sql Server Management Studio, but it is a feature of the very good SSMS Tools Pack


It is just a matter of using text indentation in the query editor.

Expanded View:

Expanded

Collapsed View:

Collapsed


No, #region does not exist in the T-SQL language.

You can get code-folding using begin-end blocks:

-- my region
begin
    -- code goes here
end

I'm not sure I'd recommend using them for this unless the code cannot be acceptably refactored by other means though!