Viewing 15 posts - 16 through 30 (of 388 total)
Hi,
I suggest you construct some dynamic sql as per below, using the intersect operator instead of the AND.
select id from entitiesFullText eft where eft.word like 'med%'
INTERSECT
select id from entitiesFullText eft...
February 18, 2016 at 7:28 am
...or use the SMO from within SSIS as this is where he's doing the rest of his scripting.
February 12, 2016 at 9:14 am
Check out this article [/url]which generates audit tables based on your tables using xsl. If you're already using ssis for the other scripts, you could leverage this to do...
February 12, 2016 at 8:41 am
I would suggest you don't load the data into a float datatype unless you're sure that's what you want. Best to use a high precision numeric.
In the import wizard,...
February 12, 2016 at 4:44 am
I haven't tested this, but something like this should do the trick.
SELECT wh_id as Wh, dateadd(m,datediff(m,0,create_dtim),0),count(*) as Plan FROM Backtest where wh_id in (1,9) group by wh_id, datediff(m,0,create_dtim)
February 12, 2016 at 4:38 am
No great revelations I'm afraid. I can just give you what I think is the Oracle approach.
If I understand you correctly, you're in a query window, rather than a...
January 27, 2016 at 8:24 am
SwePeso (12/9/2013)
It can also be found on my web page http://www.sqltopia.com[/quote%5D
Just starting to try to get my...
January 25, 2016 at 9:35 am
Thanks Jeff...although.....
Hmmmm.....I must have been unclear in my question....but I'll say it again....I'm asking about Oracle (hence I posted in the Working with Oracle forum.)
.....I hate for your salient contributions...
January 14, 2016 at 7:31 am
...and I thought I was missing the point! 😉
My question relates to ORACLE!
Thanks anyway.
January 14, 2016 at 7:12 am
I'm curious what you mean by "each of which pulls roughly 50 records"...how are you joining your tables? INNER JOIN, LEFT JOIN or UNION?
The number 20 (tables) shouldn't be...
January 13, 2016 at 9:27 am
Thanks, Stephanie....makes sense at last!
October 27, 2015 at 7:58 am
tom.w.brannon (10/27/2015)
October 27, 2015 at 4:53 am
UPDATE dbo.tblCustomer
SET Extra=NULL
FROM inserted tI
WHERE dbo.tblCustomer.CID = tI.CID
-- Worth checking for non empty?
AND dbo.tblCustomer.Extra <> ''
If you want the column to be set always to null, then...
January 29, 2015 at 5:53 am
...then use the script I provided, and change the last select into an update.
January 16, 2015 at 4:18 am
In the following link you can see which are the advanced options.
http://msdn.microsoft.com/en-us/library/ms189631.aspx
The advice is that these are best left to the experts!
(Important : Advanced options...
January 16, 2015 at 3:44 am
Viewing 15 posts - 16 through 30 (of 388 total)