Viewing 15 posts - 856 through 870 (of 926 total)
you wont be able to determine the data if its all written in a single flat file.
these should be single file per object(table). you have make a custom SSIS package...
December 4, 2013 at 6:12 am
SSIS Package extension is "dtsx" not "dstx".
December 4, 2013 at 6:08 am
There is a workaround in which you can use OPENROWSET to call a stored procedure from a function; however, this is in general a bad idea and should be avoided.
December 4, 2013 at 6:04 am
Ed Wagner (12/4/2013)
Or you could skip the GUI completely and use the following, changing integer to the data type you need.
ALTER TABLE table_name ADD column_name integer;
http://msdn.microsoft.com/en-us/library/ms190273%28v=sql.100%29.aspx
+1 , its way better...
December 4, 2013 at 5:58 am
you want all tables data in a single FLAT File is that what you are looking for ?
December 4, 2013 at 5:55 am
can you use this
Update dd
set dd.IsDelete = 'D'
From dbo.tblcustomerTarget dd
Left join dbo.tblcustomerSource d on d.custid = dd.custid
Where d.custid is null
December 4, 2013 at 5:36 am
In SSIS Max is considered as "DT_TEXT", and the destination Column SHOULD BE "DT_TEXT" to aviod truncation. otherwise you have to implicitly convert the "DT_TEXT" to "DT_STR" or "DT_WSTR".
FOR FLAT...
December 4, 2013 at 5:26 am
paul s-306273 (12/4/2013)
Easy to some, not so easy to 41% of responders...
+1, nice knowledge base question ๐
December 4, 2013 at 5:15 am
This function is using Tally Table approach to generate calendar date between the @startDate And @EndDate
if you want to understand properly then using this post from Stefan Krzywicki "Tally Table...
November 29, 2013 at 6:21 am
when you say "Load data in production server"
its means you process the file or you bring the data from the Source database.
If its source database check if the what kind...
November 29, 2013 at 3:40 am
Paul is right
if you looking for code it will look something like this
=IIF(Fields!TotalDue.Value = 0,"0.00;(0.00)","0.000000;(0.000000)")
November 29, 2013 at 3:30 am
nice question to recall the basics ๐
thanks for sharing
November 27, 2013 at 12:39 am
Paul White (11/26/2013)
-- True
SELECT IsAllDigits
FROM dbo.IsAllDigits('1ยผ');
-- True
SELECT IsAllDigits
FROM dbo.IsAllDigits('ยพ5ยผ');
Collation-related of course. There is more between 0 and 9 than just the integers....
November 26, 2013 at 10:28 pm
one of my most favorite is the join condition with
isnull(a.col1) = isnull(b.col1)
if this not helpful then people usually go for custom solution like
udf_isnull(a.col1) = udf_isnull(b.col1)
๐
November 26, 2013 at 10:26 pm
Viewing 15 posts - 856 through 870 (of 926 total)