Please Comment, Subscribe and Click Bell🔔🔔🔔 Icon for More Updates. To learn software course from our experts please register here for online training: goo.gl/HIB0wL
@praveencoder3244 Жыл бұрын
In all the youtube channel I went through no one explained in detail abt the basic concepts. you are just amazing.
@vocabularymillionaire2 ай бұрын
You made this as foolproof as possible. Super easy to comprehend 👌
@roopalityagi39585 жыл бұрын
You are providing best online video on sql server. Best part is you zoom in the screen everytime to explain better. Apart from screen you also explain on board by making diagrams . This makes your video far better then others
@Viveksharma-px4ku4 жыл бұрын
Thank you Sir!! You are awesome.
@rockingrakesh81972 жыл бұрын
Ur a hero bro
@RocketShip-sy3lm6 ай бұрын
This guy is my hero
@dineshgopalsetty20474 жыл бұрын
Followed the same to create login but couldn't able to connect server with that login details
@roshinihowdekar26692 жыл бұрын
Really great explanation sir, Thank you
@lakshminagesh26728 жыл бұрын
excellent teaching
@zahooriqbalkarimi79723 жыл бұрын
Amazing explanation sir!!
@harshar5053 жыл бұрын
teaching awesome hats off to you sir but how dataadmin will give permission to user???????
@SachinGupta-dh1cf3 жыл бұрын
What a explanation...... Solid.. Sir...
@programmeseekho27956 жыл бұрын
Thank You Sir Very helpful Video..Very Nice Sir
@premprakashnayak26364 жыл бұрын
Great learning experience
@omeswariEC-2211 ай бұрын
Really gud explanation, but pls provide link for installing sql server software
@abhi-ly8cn4 жыл бұрын
👍💯 best explain
@zakaria17565 жыл бұрын
you are the best ,huts off
@reanwithkimleng4 ай бұрын
Hello sir, when we use CUI , GUI to create user Login faster? Why password was created by GUI is expired?
@vikassomvanshi18484 жыл бұрын
nice teaching sir...
@ramyapuvvadi88794 жыл бұрын
Sql server authentiction mode lo by default login name ravdam ledu sir
@commandcenter14492 жыл бұрын
Thanks a lot teacher
@technicalganga24044 жыл бұрын
a network related or instance specific error occurred while establishing a connection to sql server
@jaggu_007i4 жыл бұрын
sir which is good . sql express version or sql developer version may i know what are you using?
@harishkmr63953 жыл бұрын
Hello Team.. video explanation was good. How to creat new user account through query with windows authentication login?
@joyitasadhukhan17043 жыл бұрын
sir, is .net required for installation? in new version it is showing something about .net. can you please clear my doubt?
@sravankumar17674 жыл бұрын
good explanation
@internationelworld15102 жыл бұрын
but...which user name is best for work purpose. I mean with Query or without Query CREATING ..but. .why did given two options for user ID creating...
@Uzair_Anwar22995 жыл бұрын
how a user can get access to the databases??
@somensingh18172 жыл бұрын
Where u shown ...no video of install ation..etc? Useless video.. yelling incomplete information
@pavansake18052 жыл бұрын
sir please send the SQL server link sir
@jitendrakesarwani84626 жыл бұрын
Which sql server is good for Windows 7 practice
@aviralyadav73736 жыл бұрын
jitendra Kesarwani ms sql server
@ksreenivasulureddy66665 жыл бұрын
How user get permission from admin?
@AD-ng4mz7 жыл бұрын
Thank you Sir.
@bhukyapavan66525 жыл бұрын
sir my sql server authentication is not connecting can you please help me out...
@Priyanka-zb7le7 жыл бұрын
username is not coming automatically and when i wrote username & password to comes some error like a "login fail to user(microsoft sql server ,Error:18456)".please give me solution that what i should do
@Imran_Imu6 жыл бұрын
You might have chosen default option for authorization at the time of installation, try below steps Within the Microsoft SQL Server Management Studio in the object explorer: 1. Right click on the server and click Properties 2. Go to the Security page 3. Under Server authentication choose the SQL Server and Windows Authentication mode radio button 4. Click OK 5. Restart SQL Services
@premprakashnayak26364 жыл бұрын
More videos about sql DBA
@Shahana_kt5 жыл бұрын
How to downld sql application Anyone one pls help me
@rajeshsarella8623 жыл бұрын
Good
@shanusulabh17717 жыл бұрын
When i am trying to open user window by proving username and password in sql authentication mode, i am getting an error of can't connect to server and also giving an additional information that a connection was successfully established with the server, but then an error occurred during the login process. What is this error i am not understanding, please help me sir or any one in resolving this problem ?
@sailajayrgudipati4687 жыл бұрын
Hi, check this one out , if you are still looking for a issue fix-kzbin.info/www/bejne/nmOXhGuujahsaqM
@ravikiranreddysuravarapu21928 жыл бұрын
I want notification when the upcomming Sql Server videos are uploaded
@vijayanks17144 жыл бұрын
🙋♂️
@jayanthbalina50783 жыл бұрын
I created user login keeping server name as my machine name user name and password are Jayanth and 123 but getting error I used syntax like this create login Jayanth with password='123' @naresh i Technologies can u please explain
@cococnk3882 жыл бұрын
Did you specify the database on which the user is going to connect? Connect first to the data base engine as an administrator, write the following query below in a query editor: Use master (or any database you've created) CREATE LOGIN Jayanth WITH PASSWORD = "123" CREATE USER Jayanth FROM LOGIN Jayanth Clic on Connexion (SSMS), the rectangular box will show up, choose SQL SERVER AUTHENTIFICATION enter Jayanth as USERNAME and 123 as password The new user will now have access to the database USER. Hope it helps.
@cococnk3882 жыл бұрын
you can later give the user all or some privileges to the tables in the database... we do have the following commands: grant (to give), deny (to refuse ) and revoke ( to remove). Hope it helps.