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 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, …