Viewing 15 posts - 1 through 15 (of 17 total)
June 19, 2018 at 9:37 am
October 26, 2017 at 4:03 pm
"with recompile" is one way to avoid parameter sniffing.
I think another way is using dynamic queries in SPs. This will cause extra plans in plan cache. So make sure...
October 25, 2017 at 5:29 pm
Not sure what you are looking for...if just want to get rid of left outer join, a sub-query for table InformationOverride would work. If record does not exist, null is...
October 1, 2015 at 12:12 pm
A great article. Very detailed and easy to follow.
December 8, 2010 at 12:06 pm
It always has pros and cons.:-)
If it’s in my coding, I would use 0.000005 in the SQL statement to save some calculation time, but put comments with detailed calculation formula...
July 20, 2010 at 4:00 pm
agree, computed column is the easiest way...
If you really want to run a query, then try this:
select cp_code, total_pageviews, (1.0*total_pageviews/1000000)*5
from <view_name>
July 20, 2010 at 3:12 pm
I see. the password in credential has to be the correct account password. Sorry, but your admin has to inform you if the password has been changed.:-P
July 16, 2010 at 10:02 am
Use alias on the second box.
Alias g1 point database g2.
July 15, 2010 at 11:57 am
Please check the ProtectionLevel of the SSIS package.
If it's not DontSaveSensitive, change it to.
Hope that helps.
July 15, 2010 at 11:53 am
I did the exact steps you posted and got no error.
July 6, 2010 at 12:49 pm
go to SQL Server configuration manager -> SQL Server Services. Right click the service and show properities -> Service tab -> Binary Path.
I am using sql2008. not sure if...
June 23, 2010 at 5:27 pm
Keys are for keeping data integrities. On fact tables, usually dimension fields are foreign keys to dimention tables. They should not have performance impact.
Indexes will help the search performance...
June 4, 2010 at 3:57 pm
I don't think a group account without password will work this way. The originally purpose of doing that is to bypass different accounts that do not having access...
March 29, 2010 at 4:44 pm
Thanks for all the comments. It's encouraging.:-)
March 25, 2010 at 12:14 pm
Viewing 15 posts - 1 through 15 (of 17 total)