Viewing 15 posts - 196 through 210 (of 268 total)
Did you trace the package to make sure that you hit the Send Mail task? If so, then check any error messages (while debugging) for that task. Also,...
April 25, 2014 at 11:12 am
SSRS doesn't have a built-in SUMPRODUCT function. However, you can easily make one. Just write a SumProduct function in VB (takes in two arrays, returns one number) and...
April 25, 2014 at 7:14 am
If you're I/O bound, start with the log files. Put them in separate filegroups, preferably on separate spindles.
If your tables are growing rapidly (e.g. transaction data) and...
April 25, 2014 at 7:10 am
It's likely that there will be a 1x1 mapping between Employee and voice Telephone numbers. So, keeping them in one simple table could be OK. Fax numbers may...
April 25, 2014 at 7:04 am
Assuming A and B have the same schema:
select * from A
except
select * from B
April 25, 2014 at 6:30 am
Just add to your where clause:
AND DateColumn <= '2015-01-01'
April 25, 2014 at 6:05 am
Why are the intervals in the desired output > 5 minutes?
April 24, 2014 at 11:39 am
+1 for surrogates. Keep the business keys out of fact tables. Resolve via Lookups during ETL
April 24, 2014 at 10:50 am
Here's a great article on the topic:
http://www.brentozar.com/archive/2012/07/identifying-correcting-sql-server-implicit-conversion/
I stopped relying on implicit conversion years ago. In fact, in all languages I write I try to adhere to the...
April 24, 2014 at 9:29 am
Luis Cazares (4/24/2014)
You don't need explicit conversion. The insert will handle it implicitly.
Sure, but Explicit is better than Implicit. SQL Server sometimes does not give you the implicit conversion...
April 24, 2014 at 8:56 am
Like this:
declare @pi nvarchar(10) = '3.14159E0'
select cast(@pi as float)
April 24, 2014 at 7:15 am
Where is column Datetime coming from?
You should post your DDL and some sample data as DML along with the results you want to see.
April 24, 2014 at 6:43 am
Try this expression in the Tablix Visibility tab:
=CountRows() = 0
April 23, 2014 at 7:34 am
Viewing 15 posts - 196 through 210 (of 268 total)