Viewing 15 posts - 6,151 through 6,165 (of 13,877 total)
wweraw25 (12/27/2016)
I know lookup is not a good option for millions of rows.
Is there any other way to grab the difference and insert into table...
December 27, 2016 at 9:52 am
wweraw25 (12/27/2016)
I have two tables
-- Table A in Server A of Database A
-- Table B in Server B of Database B
My Source is Table A and Destination is Table...
December 27, 2016 at 9:02 am
Thom A (12/26/2016)
Sorry I'm not contributing but that is Beautiful, Phil 😀
SQL Prompt to the rescue!
December 26, 2016 at 5:55 am
For the benefit of others, here's that query again, with line-breaks :w00t:
SELECT
Account02_ACCOUNT_ID6 ...
December 24, 2016 at 11:19 am
meiry242 (12/24/2016)
but i haven't found any info about my situation where i need to fill data...
December 24, 2016 at 11:16 am
meiry242 (12/24/2016)
When I try to execute it...
December 24, 2016 at 8:03 am
Chris Wooding (12/23/2016)
Running multiple SQL statements passed in as a string.
If the statements to be executed come directly from a table whose contents cannot be manipulated, except by suitably authorised...
December 23, 2016 at 7:41 am
Welsh Corgi (12/23/2016)
Lowell (12/21/2016)
is your account used by a team of users, and not an individual?
Trivially adapted from part of an answer I posted for...
December 23, 2016 at 5:50 am
hamzajosh (12/22/2016)
December 22, 2016 at 1:23 pm
hamzajosh (12/22/2016)
Drew,Thanks for your reply. I see that you have sorted the ingredients and this might work. let me try it out.
I'd also be interested to hear why my solution...
December 22, 2016 at 12:55 pm
IF OBJECT_ID('tempdb..#tmp', 'U') IS NOT NULL
DROP TABLE #tmp;
CREATE TABLE #tmp
(
FormulaId CHAR(2)
, IngredientId CHAR(2)
);
INSERT #tmp
...
December 22, 2016 at 11:02 am
Sreejith! (12/22/2016)
No luck with Win32_Product as well 🙁
Sorry, I'm out of ideas.
December 22, 2016 at 10:52 am
Jim-S (12/22/2016)
December 22, 2016 at 5:57 am
nadersam (12/22/2016)
I am trying to execute an array of comma delimited SQLs in a stored procedure.
I call it as below
declare @Parameter as nvarchar(max)
set @Parameter ='insert into Orderlog (trans_no)...
December 22, 2016 at 5:48 am
patelxx (12/21/2016)
December 21, 2016 at 11:03 am
Viewing 15 posts - 6,151 through 6,165 (of 13,877 total)