when SQL database will be available Fabric the UK region?
@stefanr3993Күн бұрын
Hi, I'd like to run this in a GitHub Action on Windows Runner. Theat runner has already installed PAC CLI but no data command available. I've followed this video to run "pac tool cmt" which is notified as successful during run. Also "pac tool list" shows it then. But when I run "pac data help" then the systems tells me "data" is not a valid command. Any suggestions what might be wrong?
@tusharsnxКүн бұрын
Then... how did we end up with WinRT?
@lmsf_data-ip9ggКүн бұрын
Is there going to be control over the auto-scaling of the Database related to cost control? To ensure it doesn't scale too high?
@davidlean8674Күн бұрын
You guys Rock. This is excellent.
@Paul-uo9sv2 күн бұрын
Can we use this in ios/android maui apps?
@ibnesabidsaikat41742 күн бұрын
Nice
@anilmaz20242 күн бұрын
Amazing!!! Super Excited!!!
@joekraft13682 күн бұрын
This was painful. They clearly aren't speaking contemporaneously.
@ibnesabidsaikat41742 күн бұрын
Effective discussion
@roohollahamiri88802 күн бұрын
The presenter mentions the code is available, where can we find the codes?
@SimonNgai-d3u2 күн бұрын
Let him cook!!!
@dcm90582 күн бұрын
have you tried making the models clickable? i mean if the user clicks the model or a button placed in the model, a pop-up appears to show the properties of that model?
@jasonbriggs63413 күн бұрын
So now you've documented the function twice. One in the comments and once it the Readme. And probably a third time with unit test. It seems like the AI should have at least suggested the comment from the code as part of the description.
@AtikBayraktar3 күн бұрын
40 years.. congrats man! I like these short videos.
@MarronGlace20113 күн бұрын
OMG DARK MODE FOR WINFORMS!!!!
@ledigdev4 күн бұрын
Here because CS50! on my path to became better at hipnotizing the computer
@DesignsbyBlanc4 күн бұрын
That’s really cool! Hypothetically, if I’m working for a company and the chatbot should only surface information to a user that’s related to their respective department, what’s the ideal way to go about this? Would it involve some sort of dynamic data injection based on the user, an interface abstraction between the chatbot and the various departmental data that routes to a specific department based on the user, or would it be best to create a separate instance for each department?
@DavideMauri2 күн бұрын
I would strongly recommend to use Row-Level Security to make sure data is not leaked no matter what hacked prompt may be used to fool the AI model to return data that it shouldn't
@Chris-ze3ic4 күн бұрын
how does routing work in regards to this? nuxtconfig auto gens a staticwebappconfig file, but is the routing configured the same to deny unauthenticated access?
@xyola5 күн бұрын
I did the same for where i work in elixir and postgress sql, obviously there are many things to consider like 1. make sure the sql generated is secure, correct, you want to prevent any change operations 2. In a multi-tenant single database instance, a user of one organization cannot see data of another organization 3. Performing retries 4. Avoiding db connection pool overload. These days I recommend using SQLite as an in memory subset of data isolation if the data is not too bulky
@sailmoe245 күн бұрын
The good old days of early Exchange!!
@martajumi.inranbows32856 күн бұрын
@Bea_Stollnitz, I wish you made a continuation of this videos with next topics linked with unsupervised learning! This was brilliant and helped me a lot, since videos were so well made and explanations were easy and on point. Thank you.
@Demetry146 күн бұрын
The funny part about this is that when the end user installs a program it automatically says it will install in the Program Folder even if it is x86 and your machine is x64. The explanation makes no sense. Make one folder and put every Program File there. If there is a problem later when porting, just do like everyone else and exclude the program until it is ported by the developer, if it is a main system program port the program before the system needs to evaluate it and/or include the ported update in the porting process. Not doing this just reaffirms that x86 isn't going anywhere, even thought there was a push when x64 was created to move everything. It's like, no matter the advancements, there will still be some programs holding everything back.
@bricampy6 күн бұрын
Love this!
@cmdkaboom7 күн бұрын
Good luck getting that now from any company they get rid of you when you get close to that
@itzhexen07 күн бұрын
Why would anyone want to know this?
@CharlesEugeneLoubao6 күн бұрын
There's a life lesson here
@gandharjayantaundhe40237 күн бұрын
Great stuff! Thanks!
@gandharjayantaundhe40237 күн бұрын
Great stuff! Thanks!
@papichulio17 күн бұрын
this videoi's are so outdated that they became useless, there is nothing that is said thats still remotly accurate. So you cant follow anything there is said in this tutorial
@dsheardown7 күн бұрын
Well, because I am in the UK, all I can say is CRIKEY! or BLIMEY! this is the sort of great utility AI is bringing to the business world. The company I work for has years of old support/knowledge base data - this is perfect to ask questions of it!
@DB-sf1hy8 күн бұрын
But what about SQL Server on AWS?
@CreativeEngineering_8 күн бұрын
I made a rag from scratch in c#. Its amazing!!! Vector database with lsh, real time memory index, partial match searching. All local using SQLite and fast Bert tokenizer.
@pintu21528 күн бұрын
In old age people don't write ✍️. Just recite and think 💬 more and compile it. Never write anything. Writing means for cleaning mind.
@matthewvaneerde19978 күн бұрын
What flavor Jell-O
@friedpork_owl4 күн бұрын
Red
@s1n7ax8 күн бұрын
Damn simple and detailed explanation all the same time
@ayb23378 күн бұрын
Blazor is a very cool framework. I love both client and server modes. Given the fact that wasm is fairly new, blazor client has a bright future .
@RobertGeorgeAtkinson9 күн бұрын
Fun fact: the 'H' in 'HResult' is for 'handle': back in the day (and by that I'm talking about early '93, IIRC), it was contemplated that the handle returned (especially in the error case) was a genuine handle, one that could be used (via additional COM system APIs) to enquire about further details about the error (think: explicitly returned exception object). Now, this would have made inproc COM calls way, way too heavyweight to be practical, so fortunately this was nipped in the bud as an actual feature (HResults are just 32 bit constants), but the name somehow stuck.
@RobertGeorgeAtkinson9 күн бұрын
Well put! Couldn't have said it better myself 🙂
@RobertGeorgeAtkinson9 күн бұрын
Larry, there's a third option, which I'm sure you're just forgetting: define an stable schema of a table of function pointers with fixed signatures and semantics. In COM, we called those 'interfaces' :-).
@balajishetty9 күн бұрын
❤
@bellaanis71579 күн бұрын
🤝
@davee865910 күн бұрын
Very useful and thank you. My use case is a db of 30,000+ products in ~20 product classes. Each class of product has its own set of attributes, stored in a JSONB attribute field. I'm also generating AI queries against the db where we can pull products from different categories based on attribute similarity.
@mathewjamesn10 күн бұрын
Great Video...Thanks
@Martin-23810 күн бұрын
I don't know which is worse: the fact, that Copilot generates wrong documentation (it does not return "False" "Otherwise", and 'foo' does not result in "False"), even after many attempts to generate it correctly (he cycles endless through the suggestions to then write most part of it manually). Or the fact, that Microsoft doesn't care in its videos, and just propagates Copilot generating garbage!
@matthewvaneerde199710 күн бұрын
Communication is very important in relationships
@jubyjoseph633210 күн бұрын
Amazing!
@arjss10 күн бұрын
Thanks.
@TGSuineg10 күн бұрын
"How to uninstall Dev Home" would be a more useful video.