Viewing 15 posts - 121 through 135 (of 167 total)
Yes here it is...
USE [AA_Helper]
GO
/****** Object: UserDefinedFunction [dbo].[fnSplit] Script Date: 7/2/2014 12:53:58 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE FUNCTION [dbo].[fnSplit]
(
@RepParam NVARCHAR(4000)
, @Delim CHAR(1)= ','
)
RETURNS @Values...
July 2, 2014 at 10:54 am
Could you provide any sort of example of what you mean, like I said I'm new to SQL development. I have always had a competent DBA that had things setup...
June 28, 2014 at 3:45 pm
yes..The only thing I am converting is the date, it is of course a string in the text file and when I substring the text file I nvarchar it and...
June 28, 2014 at 12:34 pm
Here are the indexes on these tables, so how do I eliminate CONFLICT_EXPLICIT?
June 28, 2014 at 12:22 pm
I guess I should have asked differently, what are some good resources for reading to do this?
June 27, 2014 at 12:31 pm
So let me ask what is the best approach for setting up a Data mart as it looks like I am going to be the one to do this, and...
June 27, 2014 at 12:20 pm
I am not seeing where it is saying conversion problem, I do see the remote query problems, which I told my lead that this was going to be a HUGE...
June 27, 2014 at 12:10 pm
Nope that is the way they have things setup, these are all linked servers..
June 27, 2014 at 12:01 pm
I have attached my execution plan, I ran it last night and it was taki9ng approx. 15-20 minutes to run, today it is running for 30 minutes and still not...
June 27, 2014 at 11:48 am
We've showed them that they are losing 10's of thousands of dollars yearly because of this bad data, they are giving free service to customers because they can't track all...
June 27, 2014 at 9:10 am
It is even messier than that, I created a ETL package that cleaned it up even more, but after importing all of the files I am processing, found there was...
June 27, 2014 at 8:50 am
I fixed the issue, they had changed permission to the directory I was copying the files to, so I just granted permissions to that folder again.
June 27, 2014 at 8:37 am
Worked means successfully completed the operation of reading the data within the flat files, inserting it into a table as One column, then copy the file to a different directory,...
June 23, 2014 at 9:23 am
I used the code you supplied and it works correctly, but the contact information is from a different table(alcont) this table is from a completely different system, I AM INCLUDING...
June 19, 2014 at 10:01 am
Viewing 15 posts - 121 through 135 (of 167 total)