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

TheWennerWoman

Active Member
Joined
Aug 1, 2019
Messages
303
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

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.

Forum statistics

Threads
1,224,823
Messages
6,181,175
Members
453,021
Latest member
Justyna P

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