Viewing 15 posts - 136 through 150 (of 390 total)
DBCC SHRINKFILE (JobPortal_log, 100) WITH NO_INFOMSGS
This works great for my log files!
December 1, 2011 at 9:32 am
Row.email10 = mailList10[0].ToString():"";
If this is what you meant, i still get the same error 🙁
November 23, 2011 at 1:47 pm
(?<Country>.{2})-(?<State>.{2})-(?<City>.+)-(?<ZipCode>.+)\s\(
This regex worked great!
I placed it into an SSIS script and worked like a charm!
October 26, 2011 at 5:28 pm
The trim was not working because the first character was a tab.
select ASCII(substring(IanVarchar,1,1)) from profiles
Once i determined the trim was not working, i substringed the values i...
October 26, 2011 at 5:23 pm
I had forgotten about that, thanks 🙂
Why can you not bulk insert with a delimiter from a table?
Why does it have to be an external file?
October 25, 2011 at 11:50 am
Fixed 🙂
Thanks for the assistance!
October 22, 2011 at 2:55 pm
": 8 years" This is the data in my generic field secondaryemail address - nvarchar(100)
I want to pull out the number and update the Experience column, whch is an...
October 22, 2011 at 1:11 pm
I changed the Regex and now it processes 100k records in 3 minutes 🙂
October 21, 2011 at 2:20 pm
yes RAID1, i have more drives on order, and will move the data to a RAID10.
I think the regex is what is killing me here!
October 21, 2011 at 12:06 pm
Two for the o/s
Two for the data
I am waiting for more carriers to add:
Two for the TempDB
Two for the Log Files
I thought the performance would be better, based on the...
October 21, 2011 at 11:03 am
Error1Error loading email integer works on experience JobPortalIANDB-Load of CB resumes 10-19-11 2.dtsx: The connection "{F07CF98B-1C21-4A2E-B7B2-D539D05F1AD0}" is not found. This error is thrown by Connections collection when the specific connection...
October 19, 2011 at 3:44 pm
//ArrayList mailList = ValidateEmailRow(System.Text.Encoding.Unicode.GetString(Row.DocContent.GetBlobData(0,(int)(Row.DocContent.Length-1))));
ArrayList mailList = ValidateEmailRow(System.Text.Encoding.Default.GetString(Row.DocContent.GetBlobData(0, (int)(Row.DocContent.Length - 1))));
Changed Unicode to Default in the above line and it is working 🙂
October 19, 2011 at 2:14 pm
The original input field was 'nvarchar(max)' and now the input field is 'text'.
The SSIS input field format is 'DT_TEXT', which i have not changed. Should it be something different for...
October 19, 2011 at 1:49 pm
Viewing 15 posts - 136 through 150 (of 390 total)