Viewing 15 posts - 8,041 through 8,055 (of 8,753 total)
TomThomson (6/10/2014)
Koen Verbeeck (6/10/2014)
What? You are not by default talking about the Riemann sphere? 😀
As neither SQL nor T-SQL supoprts a complex number type, it's quite clear that the extended...
June 10, 2014 at 1:44 pm
N_Muller (6/10/2014)
June 10, 2014 at 12:36 pm
subbubally (6/9/2014)
Thanks for your reply, i already tried this solution too, if we go by concatenation, there may be performance in future, that's the reason, i avoided...
June 9, 2014 at 11:11 pm
You need a little bit of trickery here.
😎
USE tempdb;
GO
SELECT
(
SELECT
...
June 9, 2014 at 10:40 pm
rockstar283 (6/9/2014)
IMHO, the simplest way is to restore a backup of production over the dev with replace unless the size is an issue. The second bird you hit with this...
June 9, 2014 at 10:11 pm
Thanks for the explanation:-)
There is not much difference in the actual work though, the matching "old" values must be selected from the existing set, based on which ever matching criteria....
June 9, 2014 at 10:06 pm
rockstar283 (6/9/2014)
June 9, 2014 at 10:27 am
ayazniazi (6/9/2014)
In the enumerator configuration I have set the object source variable to subtaskArgs which is an Object variable.
In variable mappings I have subtaskArgValue which...
June 9, 2014 at 10:17 am
clucasi (6/9/2014)
I am trying check if a files exists and if so continue with the procedure and if not exit out of the Procedure.
the code I used below but it...
June 9, 2014 at 5:22 am
This should get you started
😎
DECLARE @SXML XML = N'<ClMetadataDataContract xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.cch.com/pfx.net/psi/">
<EntityType>1</EntityType>
<NameLine1>David Jones</NameLine1>
<NameLine2 />
<DefId />
<ClientID>jones</ClientID>
<ClientSubID />
<SortName />
<ClientType />
</ClMetadataDataContract>';
DECLARE @TXML TABLE
(
TXML_ID INT IDENTITY(1,1) PRIMARY KEY CLUSTERED NOT...
June 9, 2014 at 4:38 am
Thank you Ed for this very good peace, nicely done indeed!
😎
June 9, 2014 at 4:24 am
abuhaidar82 (6/9/2014)
anyway could vb2008 conver...
June 9, 2014 at 3:23 am
Ed's version modified to show missing ranges.
😎
USE tempdb;
GO
DECLARE @num AS TABLE (
ID INT IDENTITY(1, 1),
Price Money);
DECLARE @range AS TABLE (
ID INT IDENTITY(1, 1),
...
June 9, 2014 at 3:02 am
gstarsaini (6/9/2014)
I have nearly 1 TB of CSV file data .I need to load this data into SQL database using SSIS.What is the best way to perform this(or how). Also...
June 9, 2014 at 2:02 am
Viewing 15 posts - 8,041 through 8,055 (of 8,753 total)