Тёмный
Database Star
Database Star
Database Star
Подписаться
Are you looking to improve your database development and SQL skills?
You've come to the right place.
Learn how to improve these skills by watching the videos on my channel. You'll learn:
- how to use many different SQL functions and features
- how to design a database and normalise your database tables
- how to set up different databases
- how to use SQL Developer and other IDEs
Plus much more!
SQL Leetcode Problem Solved (Leetcode 183)
11:00
9 часов назад
How to Join 3 or More Tables in SQL
4:29
Месяц назад
Stop Doing This With Your SQL
5:50
2 месяца назад
How to Understand the SSMS Execution Plan
6:52
2 месяца назад
8 Tips for pgAdmin (To Save You Time)
9:45
3 месяца назад
SQL Developer in VS Code Tutorial (2024)
8:42
4 месяца назад
How to Design a Database for AirBNB
18:47
4 месяца назад
How to Export to CSV in MySQL Workbench
3:37
4 месяца назад
This Is Why People Put WHERE 1=1 In Their SQL
2:47
5 месяцев назад
I Critique a Database Design: My Honest Review
11:02
5 месяцев назад
How to Import a Database in MySQL Workbench
3:24
5 месяцев назад
Database Design for an Online Course Website
10:38
6 месяцев назад
3 Ways to Change a Password in MySQL Workbench
2:38
6 месяцев назад
Oracle Live SQL Tutorial
12:29
6 месяцев назад
Комментарии
@edwinyulianto3660
@edwinyulianto3660 14 часов назад
Thanks for the helpful tips! Here's an additional suggestion to prevent database connection breaks after a certain period: install an extension called 'Keeplive'. This extension sends periodic queries to maintain active database connections.
@Privet_medved
@Privet_medved 14 часов назад
Great, but how can I additionally install APEX and ORDS?
@Kashmiriboy.
@Kashmiriboy. 23 часа назад
Sir it is possible to include product category as an attribute of product ?
@puneetyadav492
@puneetyadav492 День назад
Thank you
@POWERTOKNOW
@POWERTOKNOW День назад
Unable to Import into PgAdmin4 version 8.7 . Tried to use COPY command too but that also gives Error.
@BlackSwan912
@BlackSwan912 День назад
Your trainings are always spot on.
@czhablog9559
@czhablog9559 День назад
Wow what an amazing explanation!!!
@abhi1302
@abhi1302 2 дня назад
Can we checkin in azure using vs
@DatabaseStar
@DatabaseStar 2 дня назад
What do you mean by checkin? You can use VS Code with SQL Server using a different extension.
@GaoMingYang0101
@GaoMingYang0101 3 дня назад
Thank you so much! I have tried many times to use Oracle database on m1 mac, this time I success!😄
@DatabaseStar
@DatabaseStar 3 дня назад
Glad it helped!
@aminem2080
@aminem2080 3 дня назад
very understandable 💯 but i think using that EAV approach it will not fit when your products are linked variations like "BLACK color SM size SILK fabric..." like that first approach would work, could it cause u can retrieve one buy one no way to linked them to be select as one choice while being a combination of different features
@DatabaseStar
@DatabaseStar 3 дня назад
I think I understand your concern, but I think the query would be OK. You can get all of the product variations in one query and their variations, and display them on the page as needed.
@gauravsrivastava17
@gauravsrivastava17 3 дня назад
The pdf is so helpful
@DatabaseStar
@DatabaseStar 3 дня назад
Glad you like it!
@user-yq5tw7iv2x
@user-yq5tw7iv2x 3 дня назад
Hi I have a question. All around the internet they say that storing as an Integer is a no-no. I want to store hundreds of millions of numbers in the database and perform duplication checks on them. Wouldn't using integers be better here as the database would require less resources/time to duplicate check on them considering that i'm talking about hundreds of millions of rows ? Btw I wont use formatting or special characters or leading zeros. Its all numbers only
@DatabaseStar
@DatabaseStar 3 дня назад
Good question! I'm not sure whether it will be easier for the database to check for duplicates on numbers or varchar fields. I am guessing the numbers would be faster... but it could be worth running a test on them. You could store a smaller amount of them as varchar, and then remove duplicates, and see how long it takes. Then try the same thing but store it as number and see how long that takes. You could run this experiment on 100,000 rows to compare the performance.
@KostiantynVoskovtsov
@KostiantynVoskovtsov 3 дня назад
thank you !
@DatabaseStar
@DatabaseStar 3 дня назад
You're welcome!
@gauravsrivastava17
@gauravsrivastava17 3 дня назад
Great
@DatabaseStar
@DatabaseStar 3 дня назад
Thanks!
@gauravsrivastava17
@gauravsrivastava17 3 дня назад
🔥
@DatabaseStar
@DatabaseStar 3 дня назад
Thanks!
@gauravsrivastava17
@gauravsrivastava17 3 дня назад
Normalisation
@DatabaseStar
@DatabaseStar 3 дня назад
Yeah that is one approach
@LowQualitty
@LowQualitty 3 дня назад
Helped me run specific queries, thanks!
@DatabaseStar
@DatabaseStar 3 дня назад
Glad it helped!
@gauravsrivastava17
@gauravsrivastava17 4 дня назад
9:05 writing query and making er diagram is so much helpful
@DatabaseStar
@DatabaseStar 3 дня назад
Glad you found it helpful
@gauravsrivastava17
@gauravsrivastava17 4 дня назад
@DatabaseStar
@DatabaseStar 3 дня назад
Thanks
@gauravsrivastava17
@gauravsrivastava17 4 дня назад
Steps make it so easier Step 5
@DatabaseStar
@DatabaseStar 3 дня назад
That's true!
@ramonvalles4375
@ramonvalles4375 4 дня назад
what is the password?
@DatabaseStar
@DatabaseStar 4 дня назад
It's the password you set when you created your Postgres database, which is not handled by pgAdmin.
@TheDoomCompany
@TheDoomCompany 4 дня назад
Looking forward to part 4
@DatabaseStar
@DatabaseStar 4 дня назад
Good to hear!
@TimL_
@TimL_ 4 дня назад
Brilliant, I appreciated that you drew comparison between the methods in the end. Do more leet code videos please.
@DatabaseStar
@DatabaseStar 4 дня назад
Thanks for the feedback! I have more leetcode videos planned soon, so I'll keep working on them.
@joel-rg8xm
@joel-rg8xm 4 дня назад
I was always tempted to use ENUMs, I didn't know about CHECK constraints and I always thought LOOKUP TABLES were overkill in resources and performance, thanks for finally clearing it out for me.
@DatabaseStar
@DatabaseStar 4 дня назад
Glad I could help!
@TriveniPydi
@TriveniPydi 4 дня назад
Valid information is useful in a hard time to understand between container and pluggable databases.
@DatabaseStar
@DatabaseStar 4 дня назад
Yeah it's pretty confusing, I don't see the value that CDBs and PDBs add for developers.
@gauravsrivastava17
@gauravsrivastava17 5 дней назад
Great
@DatabaseStar
@DatabaseStar 4 дня назад
Thanks!
@DjR4D1C
@DjR4D1C 5 дней назад
I thought this was Common practice?
@DatabaseStar
@DatabaseStar 4 дня назад
It might be, but I haven't seen it that often.
@bot299i82
@bot299i82 5 дней назад
😂 nobody understand group by
@DatabaseStar
@DatabaseStar 4 дня назад
It can be hard to understand
@Moon22m
@Moon22m 5 дней назад
Thank you so much! I was trying to understand the ON statement in SELF JOINS and you've explained it perfectly.
@DatabaseStar
@DatabaseStar 4 дня назад
Glad it was helpful!
@epakadiongo3459
@epakadiongo3459 5 дней назад
Really like lookup and use it in many of my project
@DatabaseStar
@DatabaseStar 4 дня назад
Glad to hear it helps!
@TheDoomCompany
@TheDoomCompany 5 дней назад
Your presentation is really great. Straightforward, good pace!
@DatabaseStar
@DatabaseStar 4 дня назад
Thanks, glad you like it!
@hpz3375
@hpz3375 5 дней назад
thank you sir, in my case I was creating everything well, except for the port binding between host:container , leaving that blank
@DatabaseStar
@DatabaseStar 4 дня назад
Good to hear you got it solved.
@Odzyskiwaniemetaliszlachetnych
@Odzyskiwaniemetaliszlachetnych 5 дней назад
Sub!
@DatabaseStar
@DatabaseStar 4 дня назад
Thanks!
@Odzyskiwaniemetaliszlachetnych
@@DatabaseStar Are You advanced in knowledge graph, as well?
@oida10000
@oida10000 6 дней назад
I am using this extension and it works fine, but I can't find an option to export my query results to a file or even copy them in a good manor, does anyone know how?
@DatabaseStar
@DatabaseStar 4 дня назад
I thought you could select the results and copy them. If not, I'm sure it's something that the team will release soon. According to Twitter, they seem to be making regular enhancements to it.
@SonAyoD
@SonAyoD 6 дней назад
Great video
@DatabaseStar
@DatabaseStar 6 дней назад
Thanks!
@studymode5504
@studymode5504 6 дней назад
I've been struggling with how to make query with sql in ssms, but it seems clear after watching this video. Thanks a lot
@DatabaseStar
@DatabaseStar 6 дней назад
Glad it helped!
@user-lx6lm7zn3d
@user-lx6lm7zn3d 6 дней назад
Will the work also for mac computers?
@DatabaseStar
@DatabaseStar 6 дней назад
Yes, it should. I use VS Code all the time on a Mac.
@Supernyv
@Supernyv 7 дней назад
Nice! Thank you very much @Database Star.
@DatabaseStar
@DatabaseStar 6 дней назад
You're welcome!
@prakharsrivastava54
@prakharsrivastava54 7 дней назад
getting error "=> ERROR [stage-2 2/4] RUN "/opt/oracle"/oraInventory/orainstRoot.sh && "/opt/oracle/product/19c/dbhome_1"/root.sh 0.7s". Any Help ?
@DatabaseStar
@DatabaseStar 6 дней назад
I'm not sure what that error mesans. Is this when you run the buildContainer.sh script, or something else?
@zrous
@zrous 5 дней назад
@@DatabaseStar Thanks for posting. I am also seeing this error. It is during buildContainerImage.sh. A little more detail if you may have any suggestions: => ERROR [stage-2 2/4] RUN "/opt/oracle"/oraInventory/orainstRoot.sh && "/opt/oracle/product/19c/dbhome_1"/root.sh 0.1s ------ > [stage-2 2/4] RUN "/opt/oracle"/oraInventory/orainstRoot.sh && "/opt/oracle/product/19c/dbhome_1"/root.sh: 0.076 /bin/sh: /opt/oracle/oraInventory/orainstRoot.sh: No such file or directory
@zrous
@zrous 5 дней назад
@@DatabaseStar Thanks for posting. I am also seeing this error. It is during buildContainerImage.sh.A little more detail if you may have any suggestions: => ERROR [stage-2 2/4] RUN "/opt/oracle"/oraInventory/orainstRoot.sh && "/opt/oracle/product/19c/dbhome_1"/root.sh 0.1s ------ > [stage-2 2/4] RUN "/opt/oracle"/oraInventory/orainstRoot.sh && "/opt/oracle/product/19c/dbhome_1"/root.sh: 0.076 /bin/sh: /opt/oracle/oraInventory/orainstRoot.sh: No such file or directory
@rajveermakkar6303
@rajveermakkar6303 2 дня назад
@@DatabaseStar yes
@rajveermakkar6303
@rajveermakkar6303 2 дня назад
the issue rises when u have lack of storage, i got some storage and now issue got fixed
@HaxGuru
@HaxGuru 7 дней назад
At 11:49, you have created a shopping cart table which only holds its own ID and the related user's ID. Each cart item then stores the cart ID. Would it be a bad practice if, instead of creating a separate table named shopping_cart, each cart_item directly referenced the user ID? Because each user is going to have only one shopping cart anyways?
@DatabaseStar
@DatabaseStar 6 дней назад
That's a good point and I think it would be a better way of doing it, actually. A user can only have one shopping cart, so your idea can work.
@HaxGuru
@HaxGuru 6 дней назад
@@DatabaseStar Thanks! Your videos help me a lot!
@shadinvp1211
@shadinvp1211 8 дней назад
f]
@DatabaseStar
@DatabaseStar 6 дней назад
Thanks!
@vpms6054
@vpms6054 8 дней назад
which version of workbench you have used... because my workbench version is 8.0.34 and its says that it may not work properly Good explanation by the way
@DatabaseStar
@DatabaseStar 6 дней назад
Oh what error are you getting, and where is it being shown? I'm using 8.0.21.
@judaperez681
@judaperez681 8 дней назад
I was exploring your youtube content... NEW SUB!
@DatabaseStar
@DatabaseStar 8 дней назад
Thanks! Glad you like it.
@judaperez681
@judaperez681 8 дней назад
The video I was looking for
@DatabaseStar
@DatabaseStar 8 дней назад
Good to hear!
@exocy6480
@exocy6480 8 дней назад
it says that my password or username is wrong eventhough i used your commands
@DatabaseStar
@DatabaseStar 8 дней назад
Oh that’s odd. Are you connecting to the CDB or the PDB? I get this error sometimes even though the password is definitely right.
@exocy6480
@exocy6480 7 дней назад
@@DatabaseStar Both. I restartet the container and it somehow worked
@prteek10
@prteek10 9 дней назад
Most waited video 👍👍👍
@DatabaseStar
@DatabaseStar 8 дней назад
Yeah it has been a long time coming!
@prteek10
@prteek10 8 дней назад
@@DatabaseStar How is Perfomance of laptop? Resource utilization of m1?
@elvenpath7
@elvenpath7 9 дней назад
awesome. thanks for saving our time.
@DatabaseStar
@DatabaseStar 8 дней назад
No problem!
@pujaguchhait6385
@pujaguchhait6385 9 дней назад
"Error: A connection with the database could not be established" this is what i get. Is there anything i can do to fix this ?
@DatabaseStar
@DatabaseStar 8 дней назад
Do the same connection details work in other editors such as SQL developer?
@djtoon8412
@djtoon8412 9 дней назад
can you please do a tutorial on uuid and big int.when to use one over the other on what usecases and is it safe to use uuid as primary keys.
@DatabaseStar
@DatabaseStar 6 дней назад
Good idea! I can create a video on this.
@djtoon8412
@djtoon8412 9 дней назад
i was designinf an RBAC for my system and came up with this tutorial.i was about to use enums role types but just one statement from why use lookup table changed my idea completely.Thank you
@DatabaseStar
@DatabaseStar 8 дней назад
Thanks for sharing, glad to hear it helped you with your current work.