This simple codes hangs but runs fine in SQL Server Management Studio?

TheWennerWoman

Active Member
Joined
Aug 1, 2019
Messages
270
Office Version
  1. 365
Platform
  1. Windows
Code:
costcentre = Sheet4.Range("K6").Value

Application.ScreenUpdating = False
If Sheet4.Range("C5").Value = "ROI" Then
sSQLQry = "SELECT 'E' + RIGHT (g.[code], 5) + ' | ' + REPLACE (e.[name], '''', '') FROM [parklive].[dbo].[oas_grplist] g JOIN [dbo].[oas_element] e ON e.cmpcode = g.cmpcode AND g.code = e.code WHERE g.cmpcode = 'S002' AND grpcode = '" & costcentre & "' AND g.elmlevel = '4' AND left (e.code, 1) = 'W' AND e.endyear = '0'"
End If
If Sheet4.Range("C5").Value = "UK" Then
sSQLQry = "SELECT 'E' + RIGHT (g.[code], 5) + ' | ' + e.[name] FROM [parklive].[dbo].[oas_grplist] g JOIN [dbo].[oas_element] e ON e.cmpcode = g.cmpcode AND g.code = e.code WHERE g.cmpcode = 'T002' AND grpcode = '" & costcentre & "' AND g.elmlevel = '4' AND left (e.code, 1) = 'W' AND e.endyear = '0'"
End If

If the UK bit of code runs, it runs instantly. If the ROI bit of code runs it hangs forever and I have to crash out of Excel. The only difference is I am trying to remove apostrophes from names via the REPLACE function. But it runs instantly in SQL Server Management Studio. Any thoughts?

Thanks in advance.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.

Forum statistics

Threads
1,215,326
Messages
6,124,258
Members
449,149
Latest member
mwdbActuary

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top