Viewing 15 posts - 1 through 15 (of 17 total)
I didn't get too far because the code block that loads the data generate a syntax error I can't seem to get past.
insert into Emp_Details (Emp_Name, Company, Join_Date, Resigned_Date)
values ('John',...
September 26, 2010 at 10:13 pm
Actually, setting the null concat off was an obsolete fix for me anyway because I have since sanitized my data to eliminate nulls. There is no way on earth...
May 23, 2010 at 8:51 pm
Matt,
Do you know how to imbed the connect string inside that pass-through query? I did one and every time I run it, I have to slog through the ODBC...
May 23, 2010 at 3:17 pm
My use of "SET CONCAT_NULL_YIELDS_NULL OFF" cost me a WHOLE DAY yesterday!
The popular stored procedure for exporting a table using BCP, with a header row doesn't work if the CONCAT_NULL...
May 23, 2010 at 2:43 pm
I found the SCRIPT - By Samardeep Khera, 2009/10/01
Thanks Samardeep for noodling that one out. I really appreciate the hints. It worked first time out!:-)
May 21, 2010 at 11:09 pm
This looks like it might be really useful. Has anyone managed to get it to work? All it does for me is generate a list of errors when...
May 21, 2010 at 10:30 pm
I figured out that I could "can" the views in advance, outside the stored procedure, but I'd still like to use BCP a lot better without so much hassle if...
May 20, 2010 at 2:16 am
Yeah, INSERT was the command I was searching for!
September 8, 2009 at 7:29 pm
I'll have to keep in mind that holding onto my previous row-wise approach is a crutch, and one likely to handicap my ability to exploit SQL Server. I'll look...
August 7, 2009 at 10:10 am
So with four or more ways to do it, I found..... none of them! 🙂
Yeah, my head is still in row-wise manipulation but I'm trying. I've found...
August 6, 2009 at 4:32 pm
Could you recommend a good T-SQL primer?
I have "Wrox Press Beginning T-SQL with Microsoft SQL Server 2005 and 2008"
I looked up "QUOTENAME" in that book, but when the brief description...
August 6, 2009 at 1:49 pm
My apologies. The nugget I was missing was that the object in the QUOTENAME( was a column name and not a variable or literal.
This data sample loads...
August 6, 2009 at 1:30 pm
Hey, know what I did there? I posted bad data BEFORE reading your post! 🙂
Here's table "1" -- the accumulator
USE [CPI]
GO
/****** Object: Table [dbo].[oc_daddr] Script...
August 5, 2009 at 2:06 pm
Thanks for the quick response! I'll read and digest the link you posted, but also, here is a sample of what I've got, and what I'm trying to get:
in...
August 5, 2009 at 1:42 pm
I'll try that! I think I read somewhere that I had to use Windows authentication to get the Browser to work with SQL server 2005. At this point,...
July 23, 2009 at 4:47 pm
Viewing 15 posts - 1 through 15 (of 17 total)