Viewing 15 posts - 1,096 through 1,110 (of 1,110 total)
If you insert all your sample data into #temp, then run my query, how does it not do what you are asking?
create table #temp
(
ID INT,
[Description] VARCHAR(100)
)
...
July 13, 2009 at 6:04 am
select Id,
substring((SELECT ( ', ' + Description )
...
July 10, 2009 at 9:59 am
Thank you, Peso.
I did not ignore your suggestion as you can see.
July 10, 2009 at 9:00 am
The server switch did it.
This guy has 3 instances of SQL Server 2k5 on him.
July 10, 2009 at 8:19 am
Elliott W (7/10/2009)
1. Is the sproc actually owned by dbo, did you specify that when compiled..
2. Is...
July 10, 2009 at 8:09 am
bcp "exec db1.dbo.[usp_testproc] 'test'" queryout "Y:\files\test.csv" -c -t, -T
all on 1 line...
July 10, 2009 at 7:55 am
Yep, that's what we got, along with a bunch of big 'ol wide flat file tables.
Its a mess, trying to make it do what it can until we can...
July 8, 2009 at 6:43 pm
The function is of the form:
create FUNCTION [dbo].[fn_GetDescription]
(
@pID INT
)
RETURNS nVarchar(100)
AS
BEGIN
-- Declare the return variable here
DECLARE @Descrip nVarchar(1000)
-- Add the T-SQL statements to compute the return value here
SELECT @Descrip = ...
July 8, 2009 at 3:30 pm
I should have mentioned that all 70 of these columns look up a value from the *same table*.
I tried replacing the inline calls with self-joins (yep for all 70 of...
July 8, 2009 at 3:23 pm
How feasible is it to use BIDS 2005 in VS 2008?
June 16, 2009 at 3:20 pm
If i understand your problem, the solution is pretty simple.
Use a select with a range:
SELECT F1,F2,F3,F4,F5,F6,F7,F8,F9
,f10,f11,f12,f13,f14,f15,f16,f17
,f18,f19,f20,f21,f22,F23,F24,f25
FROM
[Sheet1$A7:Y9000]
Set the range to the first valid row through the max of whatever possible...
May 4, 2009 at 7:33 am
Crispin Proctor (8/21/2008)
What is the maxErrorCount set to?If you run the package through cmd, what is the result?
Maxerrcount is set to 5! Me thinks that may be the problem....
August 21, 2008 at 8:06 am
bang.prashant (8/20/2008)
http://rafael-salas.blogspot.com/2007/03/ssis-file-system-task-move-and-rename.html
to move and rename a file.
help me for below expression and add date & time in below expression as it gives file name as abc-82008...
August 20, 2008 at 2:34 pm
Hello,
Wanted to let everyone know that we found the root of our GNE. After calling Microsoft, we nailed it down to many TCP/IP ports being left in a time_wait...
June 5, 2008 at 1:40 pm
Ironic, I had to do this yesterday. Not because of a crash, but because the client did not send a restorable backup, just a zipped up .mdf file.
I did...
April 13, 2004 at 7:11 am
Viewing 15 posts - 1,096 through 1,110 (of 1,110 total)