Viewing 15 posts - 721 through 735 (of 6,486 total)
Doctor Who 2 (5/20/2014)
Steve Jones - SSC Editor (5/19/2014)
Doctor Who 2 (5/19/2014)
May 20, 2014 at 7:59 pm
Also - you might care to switch over to using FOR XML PATH rather than EXPLICIT. You will get the same level of control over the content and layout,...
May 16, 2014 at 2:21 pm
jasona.work (5/9/2014)
May 9, 2014 at 3:04 pm
It's hard to tell at this point. Is there any way you can provide a bit more detail around the nature of the "update" you're doing?
If you're looking to...
May 4, 2014 at 6:41 pm
Sure - just fire on back if you have questions.
April 25, 2014 at 8:13 pm
DECLARE @ModelStore VARCHAR(8)
SET @ModelStore = 'North'
;with nonmodelStores as (select storeID from #Stores where StoreID<>@ModelStore),
nonmodelinv as (select storeID, productID from #StoreInventory...
April 23, 2014 at 8:16 pm
below86 (4/23/2014)
Good to know, I wasn't aware that it rounded up.It is wierd that if you do .998 it shows as .997.
declare @d datetime;
set @d = '2014-04-23 23:59:59.998'
select @d
0
This comes...
April 23, 2014 at 3:24 pm
I was going to go down the route of a CTE as well, but the OP mentioned 2005.
April 23, 2014 at 6:30 am
I don't think you're doing yourself any favors doing a blind seek for nodes and then filtering them in the xml.query() method.
I suspect you'd get a LOT more out...
April 22, 2014 at 9:19 pm
You should certainly use the appropriate data types. That said - there's nothing mathematically wrong with the answer you got back. For one thing - you didn't specify...
April 22, 2014 at 11:47 am
Eric M Russell (4/18/2014)
IMHO (4/18/2014)
April 21, 2014 at 8:43 pm
Sorry - that's the "Show Advanced Editor". As in - right-click the flat file or XML source object in your data flow, then "Advanced Editor". Check the data...
April 17, 2014 at 7:55 pm
You may also want to check the metadata in SSIs to see if it "guessed" incorrectly as to the underlying data types. If it had to derive the types...
April 17, 2014 at 5:45 pm
Both requests are possible to some degree. The best tool to do so might be more of a factor of how repeatable you intend the process to be. ...
April 17, 2014 at 10:10 am
I'm not surprised that you haven't found much, because I think you're asking the wrong question. SQL Server is a general purpose RDBMS, so it understands how to store,...
April 14, 2014 at 11:28 am
Viewing 15 posts - 721 through 735 (of 6,486 total)