SQL Server Management Studio (SSMS) | Full Course

SQL Server Management Studio (SSMS) | Full Course

Joey Blue

3 года назад

518,344 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Rojay Arinze
Rojay Arinze - 04.11.2023 01:55

Thank you so much for this content man. I really and truthfully apprciate it.

Ответить
Amirabbas Taherian
Amirabbas Taherian - 31.10.2023 11:40

I have been working with SMSS for almost 20 years, but I didn't know some of these features. This was great! thank you Joey.

Ответить
Quiet Lumina
Quiet Lumina - 17.10.2023 20:33

Hey this is really useful for me, thanks so much. I’ve been querying within SQL server for a few months, but wanted a bigger picture understanding. Really great info in this video.

Ответить
Lloyd Hatcher
Lloyd Hatcher - 07.10.2023 21:01

Great Course🙂

Ответить
Biju Nb
Biju Nb - 07.10.2023 16:17

Thanks a lot sir

Ответить
Aussie Guru
Aussie Guru - 26.09.2023 11:59

Thanks, mate! This is THE MOST detailed and simply explained tutorial! I was angry that I couldn't find anything explanotary enough to understand how SQL works auntil I came across your video! hanks soooooo mcuh! I gotta shre the link with my friend. Cheers!

Ответить
Upkar Singh
Upkar Singh - 22.09.2023 01:37

Thanks for the very clear and Step by step knowledge for beginners. I totally recommend this video.

Ответить
Flying Horse
Flying Horse - 06.09.2023 18:19

How can I just run current statement?

Ответить
S3Kglitches
S3Kglitches - 27.08.2023 13:14

Some notes:
1. DW = data warehouse (a different type of database schema (dimensions and fact tables) used for effective reporting and predefined querying
2. When you drag a database object from the Object Explorer to Query Window, it is in brackets [ ]. That's to allow database object names colliding wth SQL keywords such as column name SELECT etc.
3. Refresh Local Cache is useful for scenario when you create or alter a table and SQL Server Management Studio then doesn't recognize these changes in editor, so that makes it recognize them.

Ответить
Jose Santos
Jose Santos - 18.08.2023 03:14

Thank you Joey, this course is great. really appreciate your time and dedication !

Ответить
Fallon
Fallon - 03.08.2023 01:18

my professor didn’t even go in depth like this. Than you so much

Ответить
krishna krishna
krishna krishna - 02.08.2023 10:37

can I get all those databases ? please share the downloading link

Ответить
romeo yemdjie4
romeo yemdjie4 - 07.07.2023 06:01

What does tha query : -- Check if the current user has the necessary privileges to restore a backup

-- 1. Check if the user is a member of the 'dbcreator' fixed server role
IF IS_SRVROLEMEMBER('dbcreator', CURRENT_USER) = 1
BEGIN
PRINT 'User has the necessary privileges to restore a backup.'
END
ELSE
BEGIN
-- 2. Check if the user has the 'RESTORE DATABASE' permission
IF HAS_PERMS_BY_NAME(DB_NAME(), 'DATABASE', 'RESTORE DATABASE') = 1
BEGIN
PRINT 'User has the necessary privileges to restore a backup.'
END
ELSE
BEGIN
PRINT 'User does not have the necessary privileges to restore a backup.'
END
END

Ответить
Ахмед Султыгов
Ахмед Султыгов - 05.07.2023 15:14

amazing🤌

Ответить
Varun Ahlawat
Varun Ahlawat - 22.06.2023 14:50

Neat!

Ответить
Ranadeep Singh
Ranadeep Singh - 09.06.2023 20:04

Great video!
Please also make a video about Azure Data Studio (which I think is the successor to SSMS)

Ответить
Behzad Ghahremani
Behzad Ghahremani - 04.06.2023 21:55

Thank you. I love that tip about dragging a table to column into SQL

Ответить
Tiger Qu
Tiger Qu - 27.05.2023 03:25

Hi Joey, do you know if there is documentation on query statements for SSMS? like some helpsheets

Ответить
ScarR373
ScarR373 - 11.05.2023 22:12

Thanks so much for this, it is exactly what I was looking for. I've learned SQL through datacamp, but it was so difficult finding content to actually explain the UI and what all the buttons and tools are. I feel much more confident now, in only a couple hours of watching this and playing around accordingly.

Ответить