Viewing 15 posts - 2,236 through 2,250 (of 4,820 total)
Try this:STUFF(sourceFileName, CHARINDEX('2', sourceFileName), LEN(sourceFileName) - CHARINDEX('2', sourceFilename) + 1, '') AS FileName
September 22, 2017 at 6:15 am
September 21, 2017 at 8:12 am
vineet.boom - Thursday, September 21, 2017 2:31 AMHi smsid is unique field it will only update one record for each sms id
Then...
September 21, 2017 at 7:04 am
Not likely to happen as long as that code is being used. Functions in a WHERE clause make the query unable to use indexes, because it's no longer "SARGABLE". Unless...
September 21, 2017 at 6:53 am
Here's how you might use OPENQUERY:SELECT
--scbs.SourceID
PL.[pkTheatreID]
,PL.[TheatreName]
,PL.[pkStartDate]
,PL.[pkStartTime]
,PL.[EndDate]
,PL.[EndTime]
,PL.[SessionStatusID]
,PL.[SessionStatusDescription]
,PL.[CaseTypeID]
,PL.[CaseTypeName]
,PL.[SessionAnaesthetistID]
September 21, 2017 at 6:41 am
Take a quick glance at your record counts. You have to pull ALL the records from the linked server across the network in order for your local server to perform...
September 21, 2017 at 6:22 am
Think of CROSS APPLY as a cartesian product creator, and roughly equivalent to an INNER JOIN on 1 = 1 between two tables separated by commas in the FROM clause. ...
September 20, 2017 at 3:01 pm
Regression analysis is not exactly well known math. I can't even tell you exactly what it's supposed to be able to help you figure out, or even why someone would...
September 20, 2017 at 2:54 pm
September 20, 2017 at 2:46 pm
September 20, 2017 at 2:41 pm
It does not fail over, just fails. The client has been able to bring it...
September 20, 2017 at 2:34 pm
September 20, 2017 at 2:22 pm
September 20, 2017 at 1:53 pm
First order of business. Does that newPromoCode function need to be involved in every individual insert? Meaning that if a record has a value of 20 for CodesOwed, then we...
September 20, 2017 at 1:28 pm
Viewing 15 posts - 2,236 through 2,250 (of 4,820 total)