Viewing 15 posts - 8,056 through 8,070 (of 8,760 total)
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
ramana3327 (6/8/2014)
I am working in a particular application. My work is to tune the sp that are using by that particular application. First, I want to list out all Sprocs...
June 9, 2014 at 1:54 am
kamamusic (6/8/2014)
I would ask for your help in order to be sure that my reasoning is correct. I am migrating a server structure from SQL 2008 to 2012 and...
June 9, 2014 at 1:46 am
tshad (6/7/2014)
June 9, 2014 at 1:42 am
ykonline (6/7/2014)
I have a requirement to import excel sheet which we receive daily, sometimes it may contain extra columns that needs to be imported to staging table as it is.
Please...
June 9, 2014 at 1:39 am
Would you be so kind to provide DDL (create table) scripts and some sample data? Then we don't have to do any guesswork:-D
😎
June 9, 2014 at 1:34 am
clayman (6/9/2014)
Thank you for the heads up, I'll fix that! Any suggestions regarding the gap for the 25.00 - 49.00 range?
Somewhat belts and braces method
😎
USE tempdb;
GO
USE tempdb;
GO
DECLARE @num AS...
June 9, 2014 at 1:05 am
clayman (6/8/2014)
INSERT INTO @Range(LowerBound, UpperBound)VALUES(1, 9),
(10, 24),
(25, 49),
...
June 8, 2014 at 11:38 pm
ayazniazi (6/8/2014)
June 8, 2014 at 10:58 pm
Viewing 15 posts - 8,056 through 8,070 (of 8,760 total)