Viewing 15 posts - 3,901 through 3,915 (of 5,111 total)
The problem sounds more like that you're storing your datetime in your table as a varchar, rather than a datetime. Is my guess correct?
Also "gives you an error";...
April 13, 2017 at 9:22 am
Personally, I feel this might be a bit more concise:DECLARE @FilePath VARCHAR(500) = '\\FileServer\\FileShare\\Directory\Sub Directory\My File Name.pdf';
SELECT @FilePath AS FilePath,
RIGHT(@FilePath,...
April 13, 2017 at 8:43 am
Unless you have some logic, if you have an Excel document where there are blank lines before the end of the document, then all of these lines will still be...
April 13, 2017 at 8:27 am
It all depends what's bigger, the budget to pay a team to rebuild your entire reporting suite or pay for a new solution to allow you to deploy straight to...
April 13, 2017 at 7:44 am
SSIS does no understand named months (or at least I'm pretty sure it doesn't, as I know I have conversion expressions to deal with it in some my my packages)....
April 13, 2017 at 7:30 am
there's certainly nothing wrong with staging tables when doing ETL. Although it's sometimes "nice" to do every transformation in one hit, it's often a lot to ask to do something...
April 13, 2017 at 6:47 am
April 13, 2017 at 6:36 am
When you say "trying to convert", what is it you're attempting to do to convert the number as well?
April 13, 2017 at 6:11 am
yuvipoy - Thursday, April 13, 2017 4:26 AMCan we use Rank or Dens_Rank, to obtain the result?
Have you tried? Why don't you...
April 13, 2017 at 4:35 am
Grr... Some of the schedule tasks failed this morning... Took me while to then notice someone has the repository folder... I have an idea who it is (as it could...
April 13, 2017 at 3:54 am
If you can't save the files to a file share first, then you're going to find this quite difficult.
What is the "real" reason your storing files, even temporarily,...
April 13, 2017 at 2:42 am
When you say it refuses to see it, do you mean it doesn't show up in the drop down? Considering you said it doesn't appear in SSMS in the networked...
April 12, 2017 at 9:22 am
Thank you, I had reviewed this, tried this, and this did not work. Today I...
April 12, 2017 at 7:50 am
CREATE TABLE #Supply
(ITMREF_0 int,
IPTDAT_0 date,
BPRNUM_0 int,
Price int);
GO
INSERT INTO #Supply
VALUES
(1, '20161002', 1,...
April 12, 2017 at 7:38 am
Viewing 15 posts - 3,901 through 3,915 (of 5,111 total)