Viewing 15 posts - 8,206 through 8,220 (of 8,760 total)
venkat5677 (5/19/2014)
there is no extra delimiter character at 4489
Ok, next thing then, is there a varchar(max)/nvarchar(max) (text_stream) or a float/real column in the dataflow?
😎
May 19, 2014 at 10:29 am
ronan.healy (5/19/2014)
hi thanks for that has to be generic.i will be reading in loats of files at different times with different info
any way to get it to to that
Now that...
May 19, 2014 at 9:25 am
Do replace char(13)+char(10) with '' ( empty string)
😎
Edit: character code.
May 19, 2014 at 8:58 am
Check line 4489 for an extra delimiter character
😎
May 19, 2014 at 7:23 am
A simple way would be along these lines
😎
USE tempdb;
GO
DECLARE @DSET TABLE
(
ClassName VARCHAR(50) NOT NULL
,NAV ...
May 19, 2014 at 3:28 am
autoexcrement (5/16/2014)
May 18, 2014 at 10:43 pm
Suggest obtaining a 64bit Windows rather than a 32bit SQL 2014
😎
May 18, 2014 at 12:33 pm
Try using
SET SHOWPLAN_XML ON;
to get the execution plan, could be a parsing error when displaying the plan.
😎
May 18, 2014 at 10:27 am
Looks like you have a 32bit version of Windows 8.1.
😎
May 18, 2014 at 10:23 am
Quick test for the version
USE tempdb;
GO
SELECT @@VERSION;
😎
May 18, 2014 at 1:30 am
ringovski (5/16/2014)
May 18, 2014 at 1:26 am
Quick question, what are you seeing in sys.database_files?
😎
select * from [database name].sys.database_files
May 18, 2014 at 1:04 am
KoldCoffee (5/17/2014)
May 18, 2014 at 12:49 am
Most likely (almost certainly!) this query produces a plan with two scans and a nested loop. For each row in the outer (Customers) it scans the inner part, something like...
May 17, 2014 at 10:05 pm
Could be a case of missing schema qualified reference. Don't rely on the default schema and add the schema name to the table name in the query.
Technically, there is nothing...
May 17, 2014 at 9:39 pm
Viewing 15 posts - 8,206 through 8,220 (of 8,760 total)