From 4eaec9f88db66cd534decee38b8bbe7e206dd375 Mon Sep 17 00:00:00 2001 From: Timna Brown <24630902+brown9804@users.noreply.github.com> Date: Fri, 17 Jan 2025 08:43:49 -0600 Subject: [PATCH 1/6] folder -> more content to be added --- .../demos/{9_Fabric_bySKU.md => 9_Fabric_bySKU/README.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename 0_Azure/2_AzureAnalytics/0_Fabric/demos/{9_Fabric_bySKU.md => 9_Fabric_bySKU/README.md} (100%) diff --git a/0_Azure/2_AzureAnalytics/0_Fabric/demos/9_Fabric_bySKU.md b/0_Azure/2_AzureAnalytics/0_Fabric/demos/9_Fabric_bySKU/README.md similarity index 100% rename from 0_Azure/2_AzureAnalytics/0_Fabric/demos/9_Fabric_bySKU.md rename to 0_Azure/2_AzureAnalytics/0_Fabric/demos/9_Fabric_bySKU/README.md From 3d6cc44f8b2ba3db65f08956b66958d95e527776 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 17 Jan 2025 14:44:36 +0000 Subject: [PATCH 2/6] Update last modified date in Markdown files --- .../2_AzureAnalytics/0_Fabric/demos/9_Fabric_bySKU/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/0_Azure/2_AzureAnalytics/0_Fabric/demos/9_Fabric_bySKU/README.md b/0_Azure/2_AzureAnalytics/0_Fabric/demos/9_Fabric_bySKU/README.md index f3a0f890..1f24f330 100644 --- a/0_Azure/2_AzureAnalytics/0_Fabric/demos/9_Fabric_bySKU/README.md +++ b/0_Azure/2_AzureAnalytics/0_Fabric/demos/9_Fabric_bySKU/README.md @@ -5,7 +5,7 @@ Costa Rica [![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/) [brown9804](https://github.com/brown9804) -Last updated: 2025-01-13 +Last updated: 2025-01-17 ------------------------------------------ From aa24d9bbf97479ffeeb9d2c9f7b4ce01ea66fba2 Mon Sep 17 00:00:00 2001 From: Timna Brown <24630902+brown9804@users.noreply.github.com> Date: Fri, 17 Jan 2025 12:51:21 -0600 Subject: [PATCH 3/6] note about target size -> clarification --- .../1_AzureData/1_Databases/demos/8_DBFreeingUpUnusedSpace.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/0_Azure/1_AzureData/1_Databases/demos/8_DBFreeingUpUnusedSpace.md b/0_Azure/1_AzureData/1_Databases/demos/8_DBFreeingUpUnusedSpace.md index 8d2bfce4..f954c5b9 100644 --- a/0_Azure/1_AzureData/1_Databases/demos/8_DBFreeingUpUnusedSpace.md +++ b/0_Azure/1_AzureData/1_Databases/demos/8_DBFreeingUpUnusedSpace.md @@ -152,7 +152,7 @@ For Azure SQL Managed Instance, consider these strategies: |----------------------------------|---------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------| | **DBCC SHRINKFILE** | DBCC SHRINKFILE is used to shrink the size of a specific database file. This command attempts to move data pages from the end of the file to unoccupied space closer to the beginning of the file, thereby reducing the file size. | `DBCC SHRINKFILE (file_id, target_size_in_MB);` | `DBCC SHRINKFILE (1, 100);` -- Shrinks the file with ID 1 to 100 MB | | **DBCC SHRINKFILE (TRUNCATEONLY)** | DBCC SHRINKFILE (TRUNCATEONLY) is a specific option for DBCC SHRINKFILE that releases all free space at the end of the file to the operating system without moving any data pages. This command is useful when you want to quickly release unused space without the overhead of moving data. | `DBCC SHRINKFILE (file_id, TRUNCATEONLY);` | `DBCC SHRINKFILE (1, TRUNCATEONLY);` -- Releases unused space at the end of the file with ID 1 | -| **DBCC SHRINKDATABASE** | DBCC SHRINKDATABASE is used to shrink the size of all data and log files in a database. This command attempts to move data pages from the end of the files to unoccupied space closer to the beginning of the files, thereby reducing the overall size of the database. `target_percent_free_space`: The desired percentage of free space to remain in the database after the shrink operation. | `DBCC SHRINKDATABASE (database_name, target_percent_free_space);` | `DBCC SHRINKDATABASE (YourDatabaseName, 10);` -- Shrinks the database to leave 10% free space | +| **DBCC SHRINKDATABASE** | DBCC SHRINKDATABASE is used to shrink the size of all data and log files in a database. This command attempts to move data pages from the end of the files to unoccupied space closer to the beginning of the files, thereby reducing the overall size of the database. `target_percent_free_space: The desired percentage of free space to remain in the database after the shrink operation.` | `DBCC SHRINKDATABASE (database_name, target_percent_free_space);` | `DBCC SHRINKDATABASE (YourDatabaseName, 10);` -- Shrinks the database to leave 10% free space | 1. Gather more detailed information about the current used and allocated space in your database: @@ -365,6 +365,8 @@ For Azure SQL Managed Instance, consider these strategies: > If you don't move the pages, the space within the file might not be optimized because the data pages could be scattered throughout the file, leaving gaps of unused space in between. This can lead to fragmentation, where the data is not stored contiguously, potentially affecting performance. In this case, the free space at the end is released, but the data pages remain scattered, which might not be optimal for performance. - After `DBCC SHRINKFILE (file_id, target_size_in_MB)`: In this case, the data pages are moved to fill the gaps, and the file is shrunk to the target size, eliminating free space. + + > The `target_percent_free_space`: parameter `defines the desired final size of the file after the shrink operation`. It indicates the final size in megabytes. For instance, setting target_size_in_MB to 2000 will reduce the file to 2000 MB. | $${\color{red}\text{Data Page}}$$ | $${\color{red}\text{Data Page}}$$ | $${\color{red}\text{Data Page}}$$ | From 7a2f43704a0008d113667cf80087ac6e837c401e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 17 Jan 2025 18:51:37 +0000 Subject: [PATCH 4/6] Update last modified date in Markdown files --- .../1_AzureData/1_Databases/demos/8_DBFreeingUpUnusedSpace.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/0_Azure/1_AzureData/1_Databases/demos/8_DBFreeingUpUnusedSpace.md b/0_Azure/1_AzureData/1_Databases/demos/8_DBFreeingUpUnusedSpace.md index f954c5b9..1c5b5f74 100644 --- a/0_Azure/1_AzureData/1_Databases/demos/8_DBFreeingUpUnusedSpace.md +++ b/0_Azure/1_AzureData/1_Databases/demos/8_DBFreeingUpUnusedSpace.md @@ -6,7 +6,7 @@ Costa Rica [![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/) [brown9804](https://github.com/brown9804) -Last updated: 2025-01-13 +Last updated: 2025-01-17 ---------- From 399b3ce8ba487d7d2a607802b3d8020b29221ec3 Mon Sep 17 00:00:00 2001 From: Timna Brown <24630902+brown9804@users.noreply.github.com> Date: Fri, 17 Jan 2025 14:19:27 -0600 Subject: [PATCH 5/6] in progress --- .../2_AzGPT_API_Transcription/README.md | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 0_Azure/3_AzureAI/14_AIUseCases/2_AzGPT_API_Transcription/README.md diff --git a/0_Azure/3_AzureAI/14_AIUseCases/2_AzGPT_API_Transcription/README.md b/0_Azure/3_AzureAI/14_AIUseCases/2_AzGPT_API_Transcription/README.md new file mode 100644 index 00000000..4e282410 --- /dev/null +++ b/0_Azure/3_AzureAI/14_AIUseCases/2_AzGPT_API_Transcription/README.md @@ -0,0 +1,31 @@ +# GPT Model Integration: Data Prep, API Calls, and Transcription + +Costa Rica + +[![GitHub](https://badgen.net/badge/icon/github?icon=github&label)](https://github.com) +[![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/) +[brown9804](https://github.com/brown9804) + +Last updated: 2024-11-26 + +---------- + +## Demo + +### Environment setup + +1. Please clone the repo: [AzureGPT_API_Transcription](https://github.com/MicrosoftCloudEssentials-LearningHub/AzureGPT_API_Transcription), you can use the ssh-key: + + ``` + git clone git@github.com:MicrosoftCloudEssentials-LearningHub/AzureGPT_API_Transcription.git + ``` + + image + + + + +
+

Total Visitors

+ Visitor Count +
From 842c4f4e914a487139c1c61c86d5d496ea054842 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 17 Jan 2025 20:19:42 +0000 Subject: [PATCH 6/6] Update last modified date in Markdown files --- .../3_AzureAI/14_AIUseCases/2_AzGPT_API_Transcription/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/0_Azure/3_AzureAI/14_AIUseCases/2_AzGPT_API_Transcription/README.md b/0_Azure/3_AzureAI/14_AIUseCases/2_AzGPT_API_Transcription/README.md index 4e282410..35f8cab1 100644 --- a/0_Azure/3_AzureAI/14_AIUseCases/2_AzGPT_API_Transcription/README.md +++ b/0_Azure/3_AzureAI/14_AIUseCases/2_AzGPT_API_Transcription/README.md @@ -6,7 +6,7 @@ Costa Rica [![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/) [brown9804](https://github.com/brown9804) -Last updated: 2024-11-26 +Last updated: 2025-01-17 ----------