Viewing 15 posts - 8,416 through 8,430 (of 8,753 total)
Chio, you could compare the installation logs from the different instances to track down the difference. I'll try out your component on a vanilla system and let you know the...
May 2, 2014 at 10:18 am
Hard to say without further knowledge, normally I would consider this a good and normal practice.
๐
May 2, 2014 at 10:03 am
Eric M Russell (5/2/2014)
Eirikur Eiriksson (4/1/2014)
Has anyone tried out the new 3D joins in 2014?
I can confirm that 3 dimensional joins work quite well; it's the 12 or 20 dimensional...
May 2, 2014 at 8:56 am
Lowell (5/2/2014)
... looked for lower hanging forum posts ๐
Felt I could not leave this one hanging......:cool:
May 2, 2014 at 5:22 am
free_mascot (5/2/2014)
Great Eirikur, is it possible to send this OUTPUT to excel using this T-sql?
Use the output to insert the records into a table and export to excel/csv from there....
May 2, 2014 at 4:29 am
You can use the output clause with the delete
๐
DECLARE @TTABLE TABLE
(
TT_ID INT IDENTITY(1,1) PRIMARY KEY CLUSTERED NOT NULL
,TT_VAL INT NOT NULL
);
INSERT INTO @TTABLE(TT_VAL)
VALUES...
May 2, 2014 at 3:21 am
I would recommend a dynamic package or in other words, programmatically generated packages. This is fairly straightforward from a script task in a master package.
๐
May 2, 2014 at 12:39 am
Lowell (5/1/2014)
maybe someone else can take the ball and run with it form...
May 1, 2014 at 10:53 pm
Lowell (5/1/2014)
May 1, 2014 at 9:33 pm
A simple solution
๐
with p as
(
select 'asdf1234' as Delivery_Site union all
select 'asdf 1234' union all
select ' asdf asdf ' union all
select ''
)
,TXT_INFO AS
(
SELECT
...
May 1, 2014 at 11:54 am
Why not try Jeff Moden's splitter, pass space as delimiter?
๐
May 1, 2014 at 10:17 am
cvkk2010 (4/30/2014)
I need help to execute a taxk.
I have text file which has SQL Statements something like
Select top 10 * from Table 1
Select top 10 * from Table 2
Select...
April 30, 2014 at 11:03 pm
On a mediocre laptop, 10000000 rows returned in 145 ms and 100000 inserts in 75 ms, I think version 1 is promising.
๐
April 30, 2014 at 2:08 pm
mister.magoo (4/30/2014)
Or I have a crappy 2012 install?
Few weeks back, before upgrading the 2012 system Iยดm working on to 2014, I ran into a similar behavior when forgetting the filter/limit...
April 30, 2014 at 1:46 pm
mister.magoo (4/30/2014)
I get the same crappy performance on 2012 as 2014 for these...I haven't got a 2008 to test on right now.
That means I might be missing something:-P
Thanks!
April 30, 2014 at 1:19 pm
Viewing 15 posts - 8,416 through 8,430 (of 8,753 total)