Viewing 15 posts - 8,521 through 8,535 (of 8,753 total)
Matt-1034261 (4/23/2014)
I have a table which has a couple of million records in it which relate to locations around the world.
I want to be able to do a search on...
April 23, 2014 at 3:52 am
ChrisM@Work (4/23/2014)
Eirikur Eiriksson (4/23/2014)
Is it this that you are looking for?😎
SELECT *INTO #MyTemp
FROM Sales.SalesOrderHeader;
SELECT *
FROM tempdb.INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME LIKE N'#MyTemp%'
DROP TABLE #MyTemp;
Would you do it like this Eirikur or would...
April 23, 2014 at 3:28 am
Is it this that you are looking for?
😎
SELECT *
INTO #MyTemp
FROM Sales.SalesOrderHeader;
SELECT *
FROM tempdb.INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME LIKE N'#MyTemp%'
DROP TABLE #MyTemp;
April 23, 2014 at 2:47 am
If you double click the Flat File Connection Manager to open the Flat File Connection Manager Editor and choose the Preview, what do you see in that column? You may...
April 23, 2014 at 2:40 am
SQLSteve (4/22/2014)
The failing data has ""DATA"" around it, where as all of the lines before are...
April 23, 2014 at 1:39 am
This is a very simple but effective approach using the nodes method to shred the XML
😎
DECLARE @XML XML = N'<applicant>
<summaryData>
<dataName>Age</dataName>
<dataValue>45</dataValue>
</summaryData>
<summaryData>
<dataName>LastName</dataName>
<dataValue>Jones</dataValue>
</summaryData>
<summaryData>
<dataName>NotThis</dataName>
<dataValue>Value</dataValue>
</summaryData>
</applicant>
<applicant>
<summaryData>
<dataName>Age</dataName>
<dataValue>48</dataValue>
</summaryData>
<summaryData>
<dataName>LastName</dataName>
<dataValue>Jones</dataValue>
</summaryData>
</applicant>';
DECLARE @APPLICANT TABLE
(
guid INT IDENTITY(1,1) NOT NULL
...
April 23, 2014 at 12:20 am
shashianireddy 30786 (4/22/2014)
how to reslove this errorMsg 468, Level 16, State 9, Line 7
Cannot resolve the collation conflict between "Latin1_General_CI_AI" and "SQL_Latin1_General_CP1_CI_AS" in the equal to operation.
These two collations are...
April 22, 2014 at 11:19 pm
Check out this article, Merge multiple data sources with SQL Server Integration Services[/url] and the Stairway to Integration Services[/url] here on SSC.
😎
April 22, 2014 at 10:02 am
Use either Merge Join or Lookup transformation in the Data Flow.
😎
April 22, 2014 at 9:51 am
venkyzrocks (4/21/2014)
No master table exists. The temporary master table has been posted below. I'll probably create one. So stripping off the FY** values and create a master list and...
April 22, 2014 at 4:46 am
SQLSteve (4/22/2014)
If I open to file up in excel, it shows the data as DATA""Where as all of the other entries are just DATA
You should use a text editor rather...
April 22, 2014 at 4:28 am
Just remove the @ from the column aliases to get the result as a node.
As I said in the previous post, switching encoding is not supported so the output will...
April 22, 2014 at 4:24 am
Nats007 (4/22/2014)
Getting the following warning in SSIS - SQL 2012:
[SSIS.Pipeline] Warning: Could not open global shared memory to communicate with performance DLL; data flow performance counters are not...
April 22, 2014 at 4:01 am
According to the RFC4180, a double quote (text qualifier) must be escaped by a double quote, don't think this is the actual cause.
How does the 246th row compare to other...
April 22, 2014 at 3:46 am
prakashr.r7 (4/22/2014)
Eirik, Could you please elaborate me ?
Firstly, the character code for upper and lower cases are different, even on a case insensitive system:
;WITH NB(N) AS (SELECT N FROM (VALUES...
April 22, 2014 at 3:37 am
Viewing 15 posts - 8,521 through 8,535 (of 8,753 total)