Viewing 15 posts - 211 through 225 (of 388 total)
My guess is that it's the second field in the temp table which is created as an identity column - as the table from which it was created had the...
June 18, 2010 at 4:10 am
sharath.chalamgari (6/18/2010)
June 18, 2010 at 12:59 am
ma-516002 (6/17/2010)
col2 varchar(20),
col3 varchar(20)
)
insert into @myothertab
select 'A','B' union all
SELECT 'W','Q'
;
declare @myanothertab table (
col2 varchar(20),
col3 varchar(20)
)
insert into @myothertab
select 'A','B' union all
SELECT 'W','Q';
select 1 as col1, col2, col3 into...
June 18, 2010 at 12:36 am
Wow ralf,
Sounds like the place you work is as dodgy as where I'm at!
Thanks for the tip.
June 14, 2010 at 7:26 am
James Stover (6/4/2010)
June 4, 2010 at 1:33 am
I remember trialling the XMLSpy home edition (no longer available). It had the very basics, but on each day one of the 'power features' was available (and the next...
June 4, 2010 at 1:08 am
This ssc article[/url] contains a similar - but much shorter - list and refers to the Transact SQL Reference Guide - but the associated site is, indeed, offline.
Your list...
June 3, 2010 at 1:04 am
Thanks...looks like a very comprehensive list.
To avoid any misunderstanding, it would be good if you acknowledged your sources, when compiling your master list.
Regards,
David.
June 3, 2010 at 12:37 am
I must say I think these cartoons are consistently awesome!
Thank you, thank you!
June 2, 2010 at 6:17 am
Thanks Welsh Corgi,
The connection is OK. SSIS uses the connection to create the config table and initial entries.
The named instance thing may in fact be a red herring, as...
April 12, 2010 at 12:42 am
I didn't mean to suggest you were lying..and apologise if that's what you understood.
What I meant was that the 'solution' you posted has no apparent link to the problem you...
April 9, 2010 at 8:09 am
I hope this solution can help to another that facing to the same problem.
I very much doubt it...but pleased you (think you) have found a solution. 🙂
April 9, 2010 at 5:42 am
replace (local)\XXXXX with what "select @@servername" returns
April 9, 2010 at 4:22 am
My connection string is : ADO?AuxDriver=SQLNCLI10.1;SCHEMAS=1;Server=(LOCAL)\XXXXX;Database=YYYYY;UserID=EkoIndriyawan;Password=C4FD3EF9-5909-4DFB-9F8E-371A73A84DED;Min Pool Size=5;Max Pool Size=100;
This is your connection string from Delphi to the first sql server, right?
And you've also got a second sql server, which...
April 9, 2010 at 4:20 am
Viewing 15 posts - 211 through 225 (of 388 total)