Viewing 15 posts - 8,386 through 8,400 (of 8,760 total)
Good question, thanks!
Made me think a bit ๐
May 5, 2014 at 3:58 pm
ScottPletcher (5/5/2014)
May 5, 2014 at 3:53 pm
Iยดm not certain that you are on the right track here with the Execute SQL Task, it has no means of accessing the Excel spreadsheet other than OPENROWSET or such....
May 5, 2014 at 3:26 pm
Further on what Koen said, you will have to test explicitly for the existence of the config file, common method is to have a variable with lets say 0 value...
May 5, 2014 at 3:08 pm
Good stuff!
IIF is supported in Sql Server 2012 and later, my guess to aid portability from Access:-D
Good luck
๐
May 5, 2014 at 2:48 pm
kiasystemsoft (5/5/2014)
HiI can not speak English well
Around here you only need to speak some SQL, post some example data and we will help you!
๐
May 5, 2014 at 2:20 pm
jdasilva (5/5/2014)
I've played around with Access and SQL statements for some time, not a master by any means, but the data I am storing has gotten to the point...
May 5, 2014 at 1:57 pm
The problem or at least part of it is mixing positions with the nodes in a Net. To mitigate this, lets use only the position (Mainid) to build the hierarchy,...
May 5, 2014 at 1:12 pm
Eric M Russell (5/5/2014)
Remember to use a schema comparison tool to insure things like indexes, table options, statistics, constraints, plan guides, etc....
May 5, 2014 at 10:48 am
I would have thought so, better ask around, been a while;-)
From a unix/linux box, the most straight forward would be ssh-tunnel.
๐
May 5, 2014 at 10:28 am
This depends of the type of connection between the two points. My advice is to configure this at the network level, even with a DSL connection, a Layer 4/7 VPN...
May 5, 2014 at 9:12 am
Try this for size
๐
declare @xml table (xmldata xml)
insert INTO @xml (xmldata) VALUES(
N'<parseObject name="Motel">
<fields>
<field name="vehicleno" fieldType="int" fieldSize="">
<grammar>
<data><![CDATA[
div.biz-page-subheader li > span.i-phone-biz_details-wrap mapbox-icon span.biz-partno
]]></data>
<attribute>html</attribute>
</grammar>
</field>
</fields>
</parseObject>
')
/*----------------*/
SELECT
RO.OT.value('@name','NVARCHAR(256)') ...
May 5, 2014 at 4:19 am
KoldCoffee (5/4/2014)
(2) what is 'ROW_NUMBER() OVER(ORDER BY (SELECT NULL)) - 1' accomplishing?
Leaving the explanation of the Cartesian Product to Jeff, here is a quick answer to the second question:
The...
May 4, 2014 at 9:25 pm
thava (5/4/2014)
Yes I know it, that's why I try to cleansing it, do you have any idea how to do it using TSQL
I'm not certain that a recursive CTE is...
May 4, 2014 at 9:17 pm
Quick question, why do you think you need a Cursor?
๐
May 4, 2014 at 8:04 pm
Viewing 15 posts - 8,386 through 8,400 (of 8,760 total)