Viewing 15 posts - 76 through 90 (of 119 total)
Here is a function that you can use to count the tabs in a records:
--create this function first
CREATE FUNCTION [dbo].[ufn_CountChar] ( @pInput VARCHAR(1000), @pSearchChar CHAR(1) )
RETURNS INT
BEGIN
RETURN (LEN(@pInput) - LEN(REPLACE(@pInput,...
September 10, 2012 at 11:42 am
Hello Here is one way.
Create Flat file Connection in SSIS setting the layout for 1Col
Create SQL Table:
CREATE TABLE dbo.Process_Table (
ID int identity(1,1) not null,
Column1 varchar(5000) null,
Nbr_Fields int null)
Import the whole...
September 10, 2012 at 11:22 am
Never used sparse columns in my SQL experience, do any developers here use them frequently?
August 29, 2012 at 1:29 pm
Who in their right mind would use curse words in an interview?
I have interviewed people the last few years and this is not the way to get a job.
Also, regardless...
August 29, 2012 at 12:17 pm
Use ChrisM@Work solution as it is clean and trim...
August 21, 2012 at 1:38 pm
Thanks Sean your solution worked like a charm.
April 5, 2012 at 8:52 am
I will add a little detail to the previous post:
EXECUTE SQL TASK - POPULATE three variables based on counts:
@NbrRecords_in_TableA = 0 (or the count)
@NbrRecords_in_TableB = 0 (or the count)
@Records_Exist =...
March 29, 2012 at 2:26 pm
I would look into the settings around the ODBC driver or play around with different SQL drivers. Of course the native sql driver is probably the best way to...
February 24, 2012 at 9:33 am
Interesting problem. Agree with Koen (previous poster) that dts is using a script to connect to the linked server.
All the posters here believe its a connection issue to the...
February 17, 2012 at 11:55 am
Not sure this is going to help...But I developed applications in MS Access and what you need to consider trying to track what happens and where is these reports are...
February 15, 2012 at 3:47 pm
Please tell me the vendor is not Red Gate Software...
December 29, 2011 at 10:12 am
If you are don't need to do it with a secure connection try this:
http://www.sqlis.com/post/Downloading-a-file-over-HTTP-the-SSIS-way.aspx
October 4, 2011 at 9:20 am
All you need to do is put the connection information in and where you want to download to.
SSIS does not support HTTPS so you don't need the connection manager.
I was...
October 4, 2011 at 9:10 am
OK here is what we do. Use Event Handler for the package to send email using sql server (if it is configured):
Here is the code you can paste into...
October 4, 2011 at 8:41 am
Viewing 15 posts - 76 through 90 (of 119 total)