Viewing 15 posts - 166 through 180 (of 1,315 total)
Nope, there is no truncation error. A truncation error would be a violation of the input or output column definitions. The truncation is done by the defined data...
July 26, 2016 at 2:23 pm
Just checked
1. MSDN
https://msdn.microsoft.com/en-us/library/ms141706.aspx no mentioning about truncation.
What I read in the middle of that page:
If the length of an output column of string data is shorter than the length...
July 26, 2016 at 1:55 pm
July 26, 2016 at 1:12 pm
This is a generalization that may or may not be useful, but a temp table will not initially have any statistics which might speed up your query. Although SQL...
July 22, 2016 at 3:25 pm
You may want a script that recreates all the indexes.
WITH ftCat AS (
SELECT CatalogName = QUOTENAME(c.name), is_default, is_accent_sensitivity_on,
...
July 22, 2016 at 2:57 pm
You can set different policies for different data stores on the same hardware, if your SAN (and/or SAN administrator) is flexible enough. So even though they share hardware with...
January 7, 2016 at 12:09 pm
The Configuration Wizard has no knowledge of the extra columns in the base table, and the SSIS_Config view it is updating doesn't include the EnvironmentEnum column so anything it inserts...
November 17, 2015 at 2:44 pm
You might look into the stored procedure that is called and see if it can be modified to handle more than one row at a time. You might be...
October 29, 2015 at 2:27 pm
I like using WITH XMLNAMESPACES to avoid having "declare namespace DTS=" all over the place. And there are differences in the SSIS XML schema for 2005, 2008, and 2012,...
September 1, 2015 at 8:06 am
We use DBAmp, and one of the reasons we chose it was the licensing model. You pay for each SalesForce production instance, not per SQL Server. So we...
August 27, 2015 at 3:01 pm
I've looked at the new package configuration and deployment features in SQL 2012-2014, and while I wish they were there from the beginning I don't see anything that makes me...
August 25, 2015 at 12:46 pm
You don't spell out the format of the header record. I assume it is column names, in which case a regular data flow task with a flat file output...
August 17, 2015 at 4:32 pm
If you're creating the text file in a data flow, the columns are fixed and you won't be able to define a different format for the trailer record (going to...
August 13, 2015 at 11:37 am
One criticism would be using "WHERE DATEPART(yyyy,Call_Date)" everywhere. It is much better to set @ArchiveDate to the oldest instant you want to keep (say midnight Jan 1 of the...
August 10, 2015 at 4:57 pm
I have a colleague who seems to be a big fan of ELTLTTLTTTTL processes. It's just not enterprisey enough if there aren't multiple redundant copies of the data.
I prefer...
August 10, 2015 at 3:00 pm
Viewing 15 posts - 166 through 180 (of 1,315 total)