Skip to content
View ahmedtijaninet's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report ahmedtijaninet

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. call-center-metrics call-center-metrics Public

  2. CSharpToManyDB CSharpToManyDB Public

    C#

  3. TeamGenerator TeamGenerator Public

    Team Generator

    Jupyter Notebook

  4. VedioToMP3 VedioToMP3 Public

    Python

  5. OCRExample.py OCRExample.py
    1
    import cv2
    2
    import numpy as np
    3
    import pytesseract
    4
    import os
    5
    import csv
  6. shrink the size of LDF.md shrink the size of LDF.md
    1
    <h3>To shrink the size of an LDF (log) file in SQL Server, you can use the DBCC SHRINKFILE command. This command takes the name of the log file as a parameter and tries to free up unused space in the file, reducing its size on disk. Here is an example of how you would use this command to shrink the size of a log file named my_log_file:</h3>
    2
    
                  
    3
    ```sql DBCC SHRINKFILE ('my_log_file', 10); ```
    4
    
                  
    5
    <p>In this example, the second parameter specifies the target size for the log file, in megabytes. You can adjust this value as needed to achieve the desired size for the file. Note that the DBCC SHRINKFILE command can be time-consuming and resource-intensive, and it may not always be successful in reducing the size of the log file.</p>