Posted inDatabase How remove apostrophe from String in MS SQL Server Microsoft SQL Server Posted by By Bineesh Kumar February 26, 2025 REPLACE ( field_name,'''', ' ') ----- here 4 numbers of single apostrophes are used at…
Posted inPython starting fast api app on windows Posted by By Bineesh Kumar February 25, 2025 in this we are using uvicorn with fastapi command : uvicorn main:app --reload
Posted inPython add new user to linux Posted by By Bineesh Kumar February 24, 2025 to simply add a new user to linux use the below code sudo useradd <user…
Posted inDatabase MSSQL Server find Database location. Posted by By Bineesh Kumar February 24, 2025 SELECT mdf.database_id, mdf.name, mdf.physical_name as data_file, ldf.physical_name as log_file, …
Posted inUbuntu Ubuntu set all files permissions Posted by By Bineesh Kumar February 24, 2025 Setting files permission in Linux / Ubuntu is sometimes a problem. It can be simplified…
Posted inMySQL MySQL Incorrect datetime value: ‘0000-00-00 00:00:00’ Posted by By Bineesh Kumar February 24, 2025 Use SET SQL_MODE='ALLOW_INVALID_DATES'; first in the Query
Posted inUbuntu Show users and groups in Ubuntu Posted by By Bineesh Kumar February 24, 2025 To display all users run following command: compgen -u. To display all groups run following…
Posted inUbuntu Wordpress Fix error wordpress can not upload files Posted by By Bineesh Kumar February 24, 2025 include define('FS_METHOD', 'direct'); inside wp-config.php