Viewing 15 posts - 7,081 through 7,095 (of 8,760 total)
Here is a quick solution using the charindex function to locate the boundaries. The first one depends on the first word being consistent, the second one has slightly more flexibility...
September 13, 2014 at 11:47 pm
Quick thought, you may want to take a look at Jacob Sebastian's XMLTable function. Also if you have an XSD for the XML, you can create a schema collection and...
September 13, 2014 at 3:24 pm
Quick note, Alberto Ferrari gave a very good talk on optimizing DAX queries at the last SQLBits where he explained in good details the Vertipaq/xVelocity compression, rowgroups, deltastores etc. Also...
September 13, 2014 at 3:05 pm
This code
CREATE SYNONYM Emp
FOR Human.Resources.Employee
;
go
select
BusinessEntityID
, NationalIDNumber
, JobTitle
from Emp
;
will not work as there is no such thing as
Human.Resources.Employee
Try it out if you don't have...
September 13, 2014 at 2:39 pm
Here is another way of doing this, slightly more flexible
😎
USE TESTDB;
GO
SET NOCOUNT ON;
DECLARE @SEARCH_VALUE INT = 19;
DECLARE @TXML XML
set @TXML = '<row id="10000000" xml:space="preserve">
<c1>Name 1</c1>
<c2>Name 2</c2>
<c10>40</c10>
<c10...
September 13, 2014 at 1:29 pm
raymond.konker.williams (9/4/2014)
Help how can i remove line breaks from my xml data when i export it to excel it breas
Hi and welcome to the forum.
Could you provide some sample...
September 13, 2014 at 12:34 pm
Jeff Moden (9/12/2014)
September 13, 2014 at 12:32 pm
martinghale (9/12/2014)
Thanks! That is definitely looking to be the one to use. Wasn't sure if there were any other options that were as complete as their list.Thanks again!
Martin
I've...
September 13, 2014 at 12:10 pm
Mr.Sahand (9/13/2014)
Thanks. MSDn says the ref can only be SQL table. Does not it suck??!!
Feel your pain mate, and be prepared, this may not be your last stumbling block using...
September 13, 2014 at 12:01 pm
g_rose42 (9/13/2014)
i...
September 13, 2014 at 11:41 am
...and if you select substring([column],1,2) from the table?
😎
September 13, 2014 at 11:26 am
Mr.Sahand (9/13/2014)
We are using SSIS 2012. No we don't have a plan to dump data in SQL.I know that it can be used in MS Excel.
Almost any consumable data...
September 13, 2014 at 11:16 am
Assume you are using SSIS and CDC components, have you checked the credentials, expired password?
😎
September 13, 2014 at 10:10 am
Viewing 15 posts - 7,081 through 7,095 (of 8,760 total)