Viewing 15 posts - 1,636 through 1,650 (of 7,168 total)
j.bluestein (3/13/2013)
glad to hear you've loaded the file and your table has that...
March 13, 2013 at 9:54 am
 is a valid ANSI character as far as SSIS and SQL Server are concerned, Latin1 codepoint 194 to be exact. Truncation could mean that the string length exceeds what...
March 13, 2013 at 8:00 am
If the data source is a file and its failing in SSIS then SQL is not going to help you unless you can get the data from the file into...
March 12, 2013 at 9:27 pm
I see it. Change this:
RowNum = ROW_NUMBER() OVER (PARTITION BY Software_Name_Raw ORDER BY Software_Name_Raw),
to
RowNum = ROW_NUMBER() OVER (PARTITION BY Software_Name_Original ORDER BY Software_Name_Original),
March 12, 2013 at 8:17 pm
BuntyBoy (3/12/2013)
Please check if your tempDB is being shrunk too regularly?
Hopefully this is not the case in anyone's environment as shrinking tempdb is a risky thing to do and there...
March 12, 2013 at 6:47 pm
alan_lynch (3/12/2013)
Hi Guys.Thanks for all your comments. Anyway going back to the original question...
Yeah, we can get distracted delving too far into the details 😀
...will it be a definate that...
March 12, 2013 at 6:26 pm
Chrissy321 (3/12/2013)
Yes I am using xp_cmdshell. I get the same error when I add the SQL Server service account to the sysadmin, that...
March 12, 2013 at 11:59 am
COALESCE too...
March 12, 2013 at 11:53 am
The base column would, as I understand it, always come across as-is in terms of it's NULL/NOT NULL property if selected straightaway in a SELECT...INTO. By 'not copying NULLability' I...
March 12, 2013 at 10:03 am
You can in 2008 and up, and maybe in later service packs of 2005, but in any case you may not want to do that. In 2005, and in some...
March 12, 2013 at 9:50 am
Eugene Elutin (3/12/2013)I agree that there is no rule of thum for using SELECT ... INTO over INSERT ... SELECT, however I always start with SELECT ... INTO before considering...
March 12, 2013 at 8:50 am
That's my understanding as well. All memory allocation is now coming from the same allocator and the best known side-effect of that change is that the 'max server memory' option...
March 12, 2013 at 8:15 am
I could find nothing in my 2008 Internals book (Delaney) that would explain the difference. The differences are odd but are nothing that I expect will ever affect how I...
March 12, 2013 at 7:59 am
winmansoft (3/12/2013)
I just had look at this [/url] nice article.Here symmetric key encrypted using certificate. There is also option to encrypt it by using password. So which one is better?
It...
March 12, 2013 at 7:51 am
Viewing 15 posts - 1,636 through 1,650 (of 7,168 total)