Viewing 15 posts - 16 through 30 (of 147 total)
Would the code below work? Would capture anything with 2 or more spaces?
SELECT *
FROM dbo.Postcode AS p
WHERE LEN(RTRIM(p_code)) - LEN(REPLACE(RTRIM(p_code),' ', '')) >=2
July 8, 2016 at 9:57 am
Have you got the following installed?
Oracle JRE 7 Update 51 (64bit) or higher.
In addition as part of the SQL installation did you select PolyBase Query Service for External Data? (Feature...
June 16, 2016 at 9:38 am
Azure data factory is rather cool. We use this a great deal in our shop.
April 20, 2016 at 2:30 am
This script may help in the moving of database files to a new location.
April 11, 2016 at 9:37 am
drew.allen (9/23/2015)
WITH Ticket_Number AS (
SELECT ti.person_ID,...
September 24, 2015 at 2:20 am
I did notice no ordering on the data in the table but failed to mention it. My bad.
September 23, 2015 at 9:39 am
We don't use SQL2014 where I work but from a quick search the following link may be of use
https://msdn.microsoft.com/en-us/library/hh231256.aspx
That said, I think based on your test data the...
September 23, 2015 at 9:25 am
Quick and dirty:
SET NOCOUNT ON
DECLARE @TicketRange TABLE
(
DateFrom DATE ,
DateTo DATE
)
INSERT...
September 23, 2015 at 9:14 am
Similar to above but I thought I would still post it as I was in the middle of doing it anyways 🙂
SET NOCOUNT ON
DECLARE @TicketRange TABLE
(
...
September 23, 2015 at 8:47 am
Perfect thanks. I will sleep tonight:w00t: it's been bugging me
July 2, 2015 at 2:50 pm
Ditto that. Getting stripped out along with the nested cursors.
July 2, 2015 at 2:04 pm
We use the following in a job which runs every hour. There may and probably will be better ways of doing it but it works for us.
SET NOCOUNT ON
SET...
May 13, 2015 at 9:44 am
Worth a shot to try that or reference the text box with the value directly. Without the actual report and data set it's difficult.
October 8, 2014 at 9:32 am
Any chance of some sample data and I will have a stab at it 🙂
October 8, 2014 at 9:15 am
Viewing 15 posts - 16 through 30 (of 147 total)