Viewing 15 posts - 1 through 15 (of 24 total)
Are you able to log into the destination server (2008), using Remote Desktop, and run SSMS?
Then you can set security on the linked server to: 'Be made using the login's...
October 2, 2013 at 3:16 pm
What you have is a Named, default instance, and only one instance on the server.
During installation it is possible to give the default instance a name.
In SSMS both names (ServerA...
June 27, 2012 at 12:15 pm
Jon,
try a file system task to copy the files to a "local" location for processing.
get the UNC path to the file(s) from your IT dept.
ArkWare
December 30, 2010 at 11:45 am
I am using expressions to set the 'ServerName' property of my connection manager from the sServerName variable. This works beautifully at design time and the value is reflected in connection...
August 17, 2010 at 11:44 am
I'm using SSMS 2008, connecting to named default instance SQL 2008 cluster. Original registration was just the 'DNSname'. This connection worked except no green arrow.
Created an alias, Name: 'DNSname\instancename' Server:...
June 9, 2010 at 6:13 am
Seth,
very nice. good explaination.
I have one question...
in the following code, isn't it returning the first of the week +/- 2 days?
SELECT DATEADD(wk, DATEDIFF(wk,0,GETDATE()), 2)
--: 2010-03-01 00:00:00.000 Start of the...
April 7, 2010 at 7:45 am
mbarkell (4/7/2010)
April 7, 2010 at 7:29 am
This should do it...
DECLARE @date as datetime
set @date = '01/01/2010'
SELECT CONVERT(varchar(11), @date, 101) as Today
, CAST(DATEPART(month,d.firstday) as varchar(2)) + '\' + CAST(DATEPART(day,d.firstday) as VARCHAR(2)) +
' - ' + CAST(DATEPART(month,d.lastday) as...
January 8, 2010 at 1:55 pm
So many ways to calculate dates.... 🙂
within the context of the SP, how about only one select statement to give you both first and last?
need to change @FL to 0...
December 1, 2009 at 6:54 am
I'm wondering why the use of Distinct at all...
BOL: By default, the UNION operator removes duplicate rows from the result set. If you use ALL, all rows are included in...
September 29, 2009 at 6:51 am
another suggestion may be to use SSIS Expressions to rename the file.
See attached for an example of adding the date to a filename.
ArkWare
March 13, 2009 at 11:36 am
I have a package in which I am using a ForEach container. The Enuminator is set at Foreach File Enuminator. I have a variable in which the path...
January 29, 2009 at 2:04 pm
No Problem, Dude
Expressions are your friend.. 😎
ArkWare
January 20, 2009 at 1:09 pm
Hey Danny,
one way to get the file name only would be to create another variable. set it's property, EvaluateAsExpression to True. Then enter the following expression:
REVERSE(SUBSTRING( REVERSE(@[User::filename]),1, FINDSTRING( REVERSE(@[User::filename]) ,...
January 20, 2009 at 7:15 am
Viewing 15 posts - 1 through 15 (of 24 total)