Viewing 15 posts - 91 through 105 (of 204 total)
I have already done the bets guess indexing, of fields like you suggested and fields that are used for joins or criteria on some of the queries I have been...
February 22, 2011 at 8:49 am
The way I approached this was to look at the key between the various tables, which would be the field everyone joins on, thinking that would be the best field...
February 18, 2011 at 11:40 am
That's great. I'd still like to learn how to deal with spaces for my case, as educational now, more than functional. I will probably be happier using what you have...
February 16, 2011 at 8:00 am
I looked at Jeff Moden's function and I don't know that I like being limited to 8K for that function.
On the parameters, that's the way I designed it:
Create Function dbo.Split(@S...
February 14, 2011 at 1:23 pm
the end goal here is a Split function, which will split a string into fields based on specifying the delimiter. This is for the ETL development I do, which takes...
February 11, 2011 at 1:30 pm
mister.magoo
You da man! It was a trigger the DBAs had put in the DB to automatically grant execute on items that were created by non-Sysadmins in the DB, but have...
February 10, 2011 at 12:51 pm
I have also set a DB offline to get exclusive access to it for a restore. Sometimes you have a program that automatically re-establishes a DB connection, as it should,...
December 7, 2010 at 11:49 am
Thanks Andrew, that worked like a champ. The help for SSMS, BOL, does not explain enough about special characters and forming the expressions. Your example is making more sense as...
December 7, 2010 at 6:39 am
I don't think that SSMS will recognize that. I don't think that Left() is a regular expression operator.
Keep in mind that I am not talking about SQL Server functions here....
December 2, 2010 at 2:00 pm
Turns out SSIS didn't like the double Nulls and would not cooperate with my various attempts to remove the Nulls.
Here's how I handled it.
1. Load all data into a text...
November 23, 2010 at 1:59 pm
Well the point in this step of the package I'm developing is to verify that the fixed-length records in this file (no delimiters) have only numerals in the locations of...
November 23, 2010 at 12:23 pm
Been messing with it a while, and this is what I have come up with. Taking other ideas though.
IsNumeric(IsNull(Replace(NUM_CAP_DAYS, Char(00), 0),0)) = 0
This returns a True for IsNumeric if the...
November 23, 2010 at 8:37 am
Configuration files are your friend. You set up a config file with the necessary configuration items in it for each environment you need to run under. When you run the...
November 19, 2010 at 12:46 pm
I would definitely set up an error destination, even if it's a text field in another table, and change your transformation to send the errors there.
I have to process...
November 19, 2010 at 11:41 am
Viewing 15 posts - 91 through 105 (of 204 total)