Viewing 15 posts - 8,386 through 8,400 (of 8,753 total)
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
GilaMonster (5/4/2014)
Cool, and when you do so take note of how incredibly badly it performs.
In my books, having to use recursive CTEs qualifies as worst case scenario, do explore the...
May 4, 2014 at 1:14 pm
eligiable (5/4/2014)
May 4, 2014 at 1:11 pm
eligiable (5/4/2014)
I've make this Fiddle and is running fine, I don't get it where is the problem:
What ever happened to Baby Jane, oops, sorry, Bilal Mateen's ID?
😎
May 4, 2014 at 12:39 pm
Throwing in my nickles worth, first on the operation side; draw up your worst case scenarios, then think of few ways to make them even worse, how you would tackle...
May 4, 2014 at 12:33 pm
I've just used this link and ran the download, works like a charm
😎
May 4, 2014 at 11:35 am
How about 2008 - 2014 versions:cool:
SELECT create_date AS INSTALL_DATE
FROM sys.server_principals
WHERE name = 'NT AUTHORITY\SYSTEM';
May 4, 2014 at 7:13 am
I would recommend using the ANSI standard information_schema
😎
/* Using ANSI standard information_schema */
IF EXISTS (SELECT * FROM tempdb.INFORMATION_SCHEMA.TABLES
...
May 4, 2014 at 7:09 am
Viewing 15 posts - 8,386 through 8,400 (of 8,753 total)