Viewing 15 posts - 7,936 through 7,950 (of 8,760 total)
Jeff Moden (6/21/2014)
ykonline (6/20/2014)
I want to insert data periodically from an excel file into a table using a SSIS. But each time the no. of columns in excel may vary....
June 21, 2014 at 3:57 pm
george sibbald (6/21/2014)
surely it would be Azure.
+#2222CC
😎
June 21, 2014 at 2:32 pm
Thought it would be Purple, half the time one sees red:blush: and the other half on is feeling blue:(
😎
June 21, 2014 at 12:56 pm
Mi dispiace,
thought I had answered this long time ago:-D
😎
USE tempdb;
GO
create table #prova
( Valuta varchar(2),
Misura DECIMAL(18,5)
)
insert into #prova values ('EU',1000)
insert into #prova values ('$',2000)
/* Adding a row number */
;WITH DIM_BASE AS
(
...
June 21, 2014 at 11:17 am
muthyala_51 (6/20/2014)
June 21, 2014 at 10:13 am
Lynn Pettis (6/21/2014)
declare...
June 21, 2014 at 10:02 am
Jeff Moden (6/19/2014)
Eirikur Eiriksson (6/19/2014)
Jeff Moden (6/19/2014)
June 21, 2014 at 9:51 am
Trick question as there was no trick in the question:-D
Thanks Andy!
😎
June 21, 2014 at 9:37 am
For fun:-D, here is a full shredding code
😎
DECLARE @XORDER XML = N'<?xml version="1.0" encoding="utf-16"?>
<order>
<Product Index="e1e2c499-f9...etc...." ProductID="12">
<Attribute Name="Paper...etc..." />
<Attribute Name="Ink..etc.." />
...
June 21, 2014 at 8:56 am
If the data sample is accurate, this can be simplified by using XML and XQuery
😎
DECLARE @String nvarchar(500) = N''
SET @String = N'
Assessed By: Michael Jordan Yagnesh
Reviewed By: Fred Smith
Home Address'
DECLARE...
June 21, 2014 at 8:15 am
Now we have the full question, here is the answer.:-D
Your query is missing the FROM part.
😎
--my table payment_details structure is
DECLARE @payment_details TABLE
(
payment_id ...
June 21, 2014 at 7:27 am
neethu payal (6/21/2014)
payment_id payment_code
1 null
2 ...
June 21, 2014 at 7:18 am
pk2dpvp (6/19/2014)
I found loads of things but nothing seems to work...
I'm trying to get a link with XML data inside the page into a table but...
June 21, 2014 at 6:53 am
brad.mason5 (6/20/2014)
June 21, 2014 at 5:41 am
Viewing 15 posts - 7,936 through 7,950 (of 8,760 total)