September 22, 2017 at 6:06 am
I get a files with a dates e.g Generate20170922, These files are stored like this in the db. I want to select File names only, I tried Substring
substring(replace(sourceFileName,'2','') ,0,charindex('.',replace(sourceFileName,'2','')) ) FileName
But it removes only the 2. please help
September 22, 2017 at 6:12 am
hoseam - Friday, September 22, 2017 6:06 AMI get a files with a dates e.g Generate20170922, These files are stored like this in the db. I want to select File names only, I tried Substringsubstring(replace(sourceFileName,'2','') ,0,charindex('.',replace(sourceFileName,'2','')) ) FileName
But it removes only the 2. please help
DECLARE @Filename VARCHAR(20) = 'Generate20170922';
SELECT
@Filename
, LEFT(@Filename, LEN(@Filename) - 8);
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
September 22, 2017 at 6:15 am
Try this:STUFF(sourceFileName, CHARINDEX('2', sourceFileName), LEN(sourceFileName) - CHARINDEX('2', sourceFilename) + 1, '') AS FileName
Steve (aka sgmunson) 🙂 🙂 🙂
Rent Servers for Income (picks and shovels strategy)
September 22, 2017 at 7:22 am
How then do I SELECT only datime from this:
20170913100320
September 22, 2017 at 7:59 am
hoseam - Friday, September 22, 2017 7:22 AMHow then do I SELECT only datime from this:20170913100320
Considering that your file name was previously "Generate20170922", your latest post seems to imply that you could have a variable length for the value of the datetime in the file name. Is this the case? Which format are all your filenames in? Could you provide a few examples?
Thanks,
Thom~
Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
Larnu.uk
September 22, 2017 at 8:13 am
hoseam - Friday, September 22, 2017 7:22 AMHow then do I SELECT only datime from this:20170913100320
Assuming there are always exactly 14 datetime characters, meaning YYYYMMDDHHMMSS, then you can use the following:SELECT DATETIMEFROMPARTS(LEFT(DT.DT_String, 4),
SUBSTRING(DT.DT_String, 5, 2),
SUBSTRING(DT.DT_String, 7, 2),
SUBSTRING(DT.DT_String, 9, 2),
SUBSTRING(DT.DT_String, 11, 2),
SUBSTRING(DT.DT_String, 13, 2),
0) AS DT
FROM (
VALUES ('Generate20170913100320')
) AS X (sourceFileName)
CROSS APPLY (
VALUES (RIGHT(X.sourceFileName, 14))
) AS DT (DT_String);
Steve (aka sgmunson) 🙂 🙂 🙂
Rent Servers for Income (picks and shovels strategy)
September 23, 2017 at 11:47 am
Thom A - Friday, September 22, 2017 7:59 AMhoseam - Friday, September 22, 2017 7:22 AMHow then do I SELECT only datime from this:20170913100320
Considering that your file name was previously "Generate20170922", your latest post seems to imply that you could have a variable length for the value of the datetime in the file name. Is this the case? Which format are all your filenames in? Could you provide a few examples?
Thanks,
To that end, are the file names also devoid of an extension?
@hoseam... the only way people can help without having to try to take a bite of a rolling donut is for you to actually and completely define the problem. In this case, that probably means you listing several file names that you actually have.
--Jeff Moden
Change is inevitable... Change for the better is not.
September 26, 2017 at 1:04 am
Thom A - Friday, September 22, 2017 7:59 AMhoseam - Friday, September 22, 2017 7:22 AMHow then do I SELECT only datime from this:20170913100320
Considering that your file name was previously "Generate20170922", your latest post seems to imply that you could have a variable length for the value of the datetime in the file name. Is this the case? Which format are all your filenames in? Could you provide a few examples?
Thanks,
They are csv files, e.g File 1, Name: Generate20170913100320; File 2, Name: Generate20170914110420
September 26, 2017 at 2:56 am
hoseam - Tuesday, September 26, 2017 1:04 AMThey are csv files, e.g File 1, Name: Generate20170913100320; File 2, Name: Generate20170914110420
So, based on your (couple of) examples, no they do not have an extension and always use 14 characters to represent the date (at the end of the file name)? If so, then you only need to use the RIGHT function (RIGHT (Transact-SQL)). Have a go yourself and if you get stuck post back what you tried, along with examples, and why the results don't return what you expect.
Thom~
Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
Larnu.uk
Viewing 9 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic. Login to reply