Viewing 15 posts - 16 through 30 (of 1,957 total)
The VALUES constructor can be used to generate rows and row_number() can assign incrementing integers to the constructed rows...
Come back to us if you need more hints
November 11, 2016 at 5:16 pm
mister.magoo (11/7/2016)
Documentation is slippery... but here is the event
select p.name, p.description, o.name, o.description
from sys.dm_xe_objects o
join sys.dm_xe_packages p
on p.guid = o.package_guid
where p.name='sqlserver'
and o.name like 'table_update_code_path'
I have to say though - this...
November 7, 2016 at 4:58 pm
Documentation is slippery... but here is the event
select p.name, p.description, o.name, o.description
from sys.dm_xe_objects o
join sys.dm_xe_packages p
on p.guid = o.package_guid
where p.name='sqlserver'
and o.name like 'table_update_code_path'
November 7, 2016 at 4:36 pm
Steve Jones - SSC Editor (11/1/2016)
Strange. The server time is still MST, so it's 9:56am as post this, in Denver, which should be 3:56 BST.
Yep, it was 3:56pm, but...
November 1, 2016 at 10:19 am
I was wondering whether all this complexity is worth it...just to run a dtsx? But I'm not a DBA, so I assume this is a small part of a bigger...
October 20, 2016 at 8:02 am
Change this line:
$FullCommand = '& "' + $DtExecPath + '" --% ' + $Params;
Then use
Invoke-Expression $FullCommand
October 19, 2016 at 5:09 pm
Sounds like they are using ipsec to secure it, in which case you could use a linked server set up on your server pointing to their server.
They have provided you...
October 12, 2016 at 3:55 pm
datetime to money and hierarchyid to varchar are listed as implicit...
sorry, got those round the wrong way...
money to datetime and varchar to hierarchyid are both implicit, so that is what...
October 12, 2016 at 3:51 pm
*I cannot ignore it - please don't *
Now, check your routing table on the client - it should be re-configured to always send traffic via the internal nic for your...
October 11, 2016 at 2:57 pm
Eirikur Eiriksson (10/8/2016)
For completeness, 5 different versions which all produce the same execution plan although performance may vary depending on the XML structure.😎
One more variant for these which shows a...
October 8, 2016 at 4:52 pm
Well, I would start by having your parameter names match the ones in the SP.
Maybe it is just a mistake in how you have posted this, but the procedure...
September 30, 2016 at 2:15 am
Well, you will find that while some people may be happy to open an Excel spreadsheet and figure things out, the best help will come if you provide readily consumable...
September 27, 2016 at 2:36 pm
Lee Hopkins (9/27/2016)
I wan to use this result to create a declared table
DECLARE @listStr VARCHAR(Max)
SELECT @listStr =...
September 27, 2016 at 2:25 pm
September 27, 2016 at 2:22 pm
With the latest SSMS 2016, you can avoid this error by changing the default scripting option "Convert user defined data types to base types" to True.
September 23, 2016 at 5:11 pm
Viewing 15 posts - 16 through 30 (of 1,957 total)