- 45
- 29 313
Data With David
เข้าร่วมเมื่อ 18 มี.ค. 2022
Fix Error "This account may not have enough CPU cores to satisfy this request" On Databricks
In this video, we’ll walk you through the steps to resolve the error message: This account may not have enough CPU cores to satisfy this request -- on Databricks. Whether you’re a beginner or an experienced user, encountering resource allocation errors can be frustrating.
มุมมอง: 5
วีดีโอ
Azure 101: Key Terminologies for Beginners
มุมมอง 4321 วันที่ผ่านมา
🚀 Welcome to Azure 101! If you’re new to Microsoft Azure or cloud computing, this video is the perfect starting point. We’ll break down the key terminologies you need to know, making complex concepts simple and relatable. By the end, you’ll have a solid foundation to confidently explore Azure’s services and start your cloud journey. What You'll Learn: - What is an Azure subscription and why it...
How I Built a Website in 5 Minutes Using ChatGPT and Replit!
มุมมอง 32321 วันที่ผ่านมา
In this video, I show you step-by-step how I built a functional website in just 5 minutes using ChatGPT and Replit. Whether you’re a beginner with no coding experience or a developer looking for a faster way to create projects, this guide will help you get started! 🚀 What You’ll Learn: ✅ How to use ChatGPT to generate code for your website. ✅ How to set up your website on Replit. ✅ Tips for mak...
Day 15: Python Projects | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 5Kหลายเดือนก่อน
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 15: We’ll bring together everything you’ve learned in this series by working on two practical projects. These projects will give you hands-on ex...
Day 14: Object-Oriented Programming | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 5Kหลายเดือนก่อน
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 14: We’ll introduce Object-Oriented Programming (OOP), a powerful programming paradigm that helps organize code into reusable and logical struct...
Day 13: Error Handling | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 61หลายเดือนก่อน
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 13: We’ll cover error handling, a crucial concept for writing robust Python programs. You’ll learn how to manage errors gracefully using `try`, ...
Day 12: Modules and Packages | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 106หลายเดือนก่อน
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 12: We’ll explore modules and packages, which help you organize code into reusable components. You’ll learn how to import and use both built-in ...
Day 11: File Handling | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 46หลายเดือนก่อน
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 11: We’ll explore file handling, which is essential for working with data stored in external files. You’ll learn how to open, read, write, and d...
Day 10: Working with Strings | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 141หลายเดือนก่อน
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 10: We’ll focus on strings, one of the most commonly used data types in Python. Strings are used to store and manipulate text. Today, you’ll lea...
Day 09: Functions | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 111หลายเดือนก่อน
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 09: We’ll explore functions, which are reusable blocks of code that perform specific tasks. Functions help make your code more organized, modula...
Day 08: "For" & "While" Loops | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 182หลายเดือนก่อน
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 08: We’ll explore loops, which allow you to repeat code multiple times. You’ll learn how to use `for` and `while` loops, create nested loops, an...
Day 07: Conditional Statements | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 42หลายเดือนก่อน
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 07: We’ll explore conditional statements in Python, which allow you to control the flow of your program by making decisions based on certain con...
Day 06: Data Structures - Dictionaries | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 115หลายเดือนก่อน
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 06: We’ll explore dictionaries, a powerful data structure in Python that allows you to store data as key-value pairs. Dictionaries are ideal for...
Day 05: Data Structures - Tuples | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 145หลายเดือนก่อน
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 05: We’ll explore tuples, an immutable data structure in Python. Tuples are similar to lists but cannot be modified after they’re created. Today...
Day 04: Data Structures - Lists | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 93หลายเดือนก่อน
Welcome to the "15 Days of Python" series! This project is designed as a comprehensive beginner’s guide to learning Python programming. Over the course of 15 days, we cover foundational Python concepts and work towards building real-world projects. Day 04: We’ll dive into lists, one of Python’s most versatile data structures. Lists allow you to store and manage collections of items. Today, you’...
Day 03: Operators & Expressions | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 126หลายเดือนก่อน
Day 03: Operators & Expressions | 15 Days of Python with Daily Lessons, Practice, & Project
Day 02: Variables and Data Types | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 210หลายเดือนก่อน
Day 02: Variables and Data Types | 15 Days of Python with Daily Lessons, Practice, & Project
Day 01: Introduction to Python | 15 Days of Python with Daily Lessons, Practice, & Project
มุมมอง 5Kหลายเดือนก่อน
Day 01: Introduction to Python | 15 Days of Python with Daily Lessons, Practice, & Project
10 Essential Git Commands Every Developer and Data Professional Should Know!
มุมมอง 502 หลายเดือนก่อน
10 Essential Git Commands Every Developer and Data Professional Should Know!
How to Design a Data Model Using Python and SQLite
มุมมอง 3914 หลายเดือนก่อน
How to Design a Data Model Using Python and SQLite
How to Create Azure Key Vault and Connect with Databricks
มุมมอง 4526 หลายเดือนก่อน
How to Create Azure Key Vault and Connect with Databricks
How to Provision the Medallion Architecture on Azure ADLS using Terraform
มุมมอง 1157 หลายเดือนก่อน
How to Provision the Medallion Architecture on Azure ADLS using Terraform
How to Migrate On-premises SQL DB to Azure Datalake Gen2 | Single & Bulk Copy Using Data Factory
มุมมอง 5137 หลายเดือนก่อน
How to Migrate On-premises SQL DB to Azure Datalake Gen2 | Single & Bulk Copy Using Data Factory
How to Connect to Databricks from PowerBI
มุมมอง 7628 หลายเดือนก่อน
How to Connect to Databricks from PowerBI
How to Fix Data Migration Error -- errorcode = jrenotfound
มุมมอง 4208 หลายเดือนก่อน
How to Fix Data Migration Error errorcode = jrenotfound
How I Automated and Analyzed Google Form on Looker Using Expressions and Javascript
มุมมอง 2988 หลายเดือนก่อน
How I Automated and Analyzed Google Form on Looker Using Expressions and Javascript
How to Write CSV as Delta Table to DBFS and Data Lake | Azure Databricks
มุมมอง 5388 หลายเดือนก่อน
How to Write CSV as Delta Table to DBFS and Data Lake | Azure Databricks
How to Create Azure Datalake Gen-2 Storage
มุมมอง 969 หลายเดือนก่อน
How to Create Azure Datalake Gen-2 Storage
you did a good job here please keep it up i enjoyed every bit of your mentorship and lastly please do more
Thanks you. I've uploaded all 15 videos in this series. Please check it out
thanks bro
Welcome
Im total noob with zero xp. I managed to deploy fully functional prototype for interactive store locator, using replit agent alone. Very impressive
Great, that sounds impressive!
I basically did all of this in one prompt
Awesome!
This only works if you have the 32bit version of Office/Excel installed. My Enterprise requires the 64bit version and I have no control over that and cannot install the 32bit version. What do you do in that case? I've tried the 64bit version of the MS Access redistributable, but end up with the same exact error.
I tried the exercise, and here's what I did: users_height = int(input("Enter your height in meters: ")) users_weight = int(input("Enter your weight in KG: ")) users_BMI = users_weight / users_height print ("Your BMI is", users_BMI) this returned an error. my first mistake was not checking how to calculate for BMI properly before writing the code. I ran it through chatgpt, and it gave me this: users_height = float(input("Enter your height in meters: ")) users_weight = float(input("Enter your weight in KG: ")) users_BMI = users_weight / (users_height * 2) print("Your BMI is:", users_BMI) what do you think?
Yea, that's a nice try. In the video I provided the solution to the exercise. The final formula is bmi = weight / (height * height)
@@david-ezekiel yeah, I was wondering why you repeated height. What if I just do: "(height * 2)"
Thanks Well explained Carry on regardless
Thank you, I will
Awesome content. Thank you!
Glad it was useful!
Thanks for the help.
Happy to help
Great video👏. Another great lesson presented in an excellent manner.
Thank you! 😃
I really want to learn Python coding manh!! There's so much out here that gets me confused on where/what to start
Search " Python with Bro code. Or Javascript with Bro code. Also Code with Mosh.....
You could go through my playlist and start from Day 01
Thank you so much for this. Straigh forward and helpful
Glad it was helpful!
amazing initiative, please keep going!
Thank you! Will do!
Thanks for this video
Thanks David this is a good and clear example
Glad you found it useful
Good one David
Thank you
This video open the eyes., struggled lot to overcome this issue., your video helps out. Thank you
Glad it helped!
Thanks
Thanks David, I was tired trying a lot of ways to solve it, but your video help me
Glad it helped
Great Video. Thanks👍
Thanks for watching!
thank u, it really help me
Glad it helped!
Thank you
Welcome!
Hi David thanks for this valuable info can you please upload videos related real time problem faced by data engineers it would be really helpful
Thank you for the comment. Sure, I will add that to my list
@@david-ezekiel thank you David
@@cromagaming5518 You can also check this out video that I made on data migration. You may find it useful as I handled one of the real time problems faced by data engineers: th-cam.com/video/zoyk6_8an-0/w-d-xo.html
file is no longer available, can you share the link where can i download the file or if you can share your downloaded file here... thanks
It appears Microsoft may have stopped supporting access 2010 and removed the installation file. If you are unable to download the installation file from the above link, please try the below. This should work: www.microsoft.com/en-us/download/details.aspx?id=54920
Great job you doing.
Am using a student account on azure
Am using a student account on azure
Please i had issues connecting my sql server with my data factory after installing my self hosted integration run time can i do this exactly to get connected.or is there another way out
my laptop have installed version 64bits, not problem if I install new in version 32bits?
I am having trouble with the Excel connection manager in Microsoft Visual Studio. When I try to get table information, I get this error: "Unable to retrieve table information for the connection manager 'Excel Connection Manager 4'. Failed to connect to the source using the connection manager 'Excel Connection Manager 4'." To fix this, I installed the Microsoft Access Database Engine 2016. But the problem is still there. The connection manager cannot connect to the Excel source. Can you help me fix this problem?
I tried this approach and still encountering this issue. Using Visual Studio 2022. (It is saying by default it will work on 64 bit and cannot change in properties as well). What can be done?
You hit the nail on the head with this workaround. Thanks a lot!!
Glad it helped!
Thanks David, I also had same issue and was struggling. Your videos helped me.
Happy you found it useful. Thanks
Hi David this is a good one for Beginners Bro
Glad you liked it
its not working
It appears Microsoft may have stopped supporting access 2010 and removed the installation file. You can try this, it should work: www.microsoft.com/en-us/download/details.aspx?id=54920
@@david-ezekiel it worked !! as they asked me to delete the current office suite but i went to command prompt and 1) -cd %USERPROFILE%\Downloads 2)-"AccessDatabaseEngine.exe" /quiet It worked now without removing office package.
@@ArunKumar-oi3tq how you did it didn't work for me
@@david-ezekiel it didn't work for me
It worked for me. Arun, Thank you very much!!!!!!!
what of a case scenario where integration run time doesn't connect to sql server,what should be done
There are several reasons why this may not connect, and you can diagnose the issue from the error message. Generally, ensure the integration runtime (IR) is running, verify network and firewall settings on SQL Server to allow incoming connections from the IR's IP range, and check that the authentication and configuration settings in ADF are correctly specified.
i tried downloading the file. it appears its no more available
having the same problem anny help
It appears Microsoft has stopped supporting access 2010 and removed the installation file. You can try this, it should work: www.microsoft.com/en-us/download/details.aspx?id=54920
@@david-ezekiel I tried to download and install it but its not working, can you share your 2010 downloaded file?
This video is very wonderful. Learnt a lot.
Glad it was helpful!
Nice explanation 👍
Glad you liked it!