Viewing 15 posts - 9,136 through 9,150 (of 9,399 total)
I agree with Paul - normalization is good for any OLTP system. Don't believe everything you read...I would start by not believing the quote above that it isn't good.
That...
July 8, 2013 at 12:06 pm
I think David is on to something here. If both columns are meant to be the same and they actually do hold smallint data, then convert the float column...
July 8, 2013 at 10:59 am
Not as far as I know. I know exactly what you mean, as I've encountered it several times myself. What I've done in this situation is:
1. Start with...
July 8, 2013 at 10:49 am
I should have pointed out that you don't have to use SSIS for this. You could implement this is a SQL procedure using the BULK INSERT statement. The...
July 3, 2013 at 3:20 pm
I really like the approach Luis took to split the data. You could use the BULK INSERT into a single field from my approach and then split the values...
July 3, 2013 at 3:16 pm
This is a pretty interesting problem. I don't know if this is the best way to handle it, but here's one approach. Let me admit up-front that I've...
July 3, 2013 at 1:53 pm
Glad I could help.
July 2, 2013 at 6:20 pm
You're going to want to use the DATEDIFF function.
For something more specific, please post the DDL to create your tables and some sample data so we can see what you...
July 2, 2013 at 2:01 pm
You have a GO after your USE statement. This terminates the batch above the GO, eliminating the variable declaration in the batch started immediately after the GO. Move...
July 2, 2013 at 1:59 pm
Or do you want to use RAISERROR with a message that contains a variable string?
Example:
SELECT @intCount = COUNT(*)
FROM table_name
WHERE code = @passed_code;
IF @intCount > 0
...
June 28, 2013 at 1:51 pm
Is this what you're looking for?
SELECT t2.[index], t1.[type], t1.code, AVG([current]) avg_current, AVG([bpo]) avg_bpo, AVG([forecast]) avg_forecast
FROM table1 t1
INNER JOIN table2 t2 ON t2.code = t1.code
...
June 28, 2013 at 1:38 pm
Another possibility you may want to consider is to use a system tool to ghost the production server and then apply the image to the test server. I've never...
June 28, 2013 at 12:54 pm
I admit I've never used the SOUNDEX or DIFFERENCE functions before, so I got to learn something today. That's always a good way to start the day. Thanks...
June 28, 2013 at 5:50 am
No problem. Glad I could help.
June 27, 2013 at 1:51 pm
Ed Thompson (6/27/2013)
June 27, 2013 at 12:35 pm
Viewing 15 posts - 9,136 through 9,150 (of 9,399 total)