Hi,
i have json Data:
for example:
{
"Data": {
"PageSize": 1000,
"IsLastPage": false,
"NextPageLink": "/v1.0/api/portfolio?page=4&pagesize=1000",
"PreviousPageLink": "/v1.0/api/portfolio?page=2&pagesize=1000",
"CurrentPageNumber": 3,
"TotalRows": 7839,
"Page": [
{
"DId": "69c858a4-0000-4ce7-af1a-5e435ed30804",
"CustomerReferenceNumbers": [
"3432432434O"
],
"CountryCode": "JP",
"CountryName": "Japan",
"Title": "Title apparatus's with double sided roof's topped",
"IpType": "Pat",
"IpSubType": "pat",
"Origin": "Nat",
"Status": "Inactived",
"Application": {
"Number": "2022-186354",
"Date": "2008-07-17"
},
"Grant": {},
"NationalFiling": {},
"Publication": {},
"ParentApplication": {},
"ExpiryDate": "2028-07-17",
"NumberOfClaims": 0,
"LicenseOfRight": false,
"CostCenters": [
{
"ReferenceNumber": "12345",
"Split": 100,
"Company": {
"Name": "Field",
"Number": "001"
}
}
],
"RegisteredOwners": [
{
"Name": "XXXXXXXXXXXXXXX",
"Number": ""
}
]
}
]
},
"Errors": [],
"HasError": false
}
for Using the Data in an MSSQL Query i want to remove the " â ". Otherwise the Query fails, because MSSQL breaks the Query with an Syntax Error.
Can anybody give me tipp for replacing the " â "
thank you in advance
Franz