Viewing 15 posts - 1,171 through 1,185 (of 1,231 total)
I know this is an old post. But with the month extraction, I first check in the formula if the month is greater than 9, else I stuff a "0"...
April 17, 2012 at 11:34 pm
I am not sure why you would not want to create the CASE statement equivalent in the where clause by using AND, OR, and () operators.
April 17, 2012 at 11:27 pm
I am not sure how many rows you expect in the tables, but I think a regular int rather than a large unique identifyer will query the data faster when...
April 4, 2012 at 10:02 am
From the diagram, the ETL brings in your data from your own operation system(s) and from the outside world. This would be a good place to make sure the data...
April 3, 2012 at 4:42 pm
I don't think the index is as bad as it sounds. Without a good index a process has to lock the whole table (on a table scan) instead of taking...
February 10, 2012 at 2:33 pm
This is the type of problem that MDX handles quite well, if the user has an OLAP cube to query from. A date dimension and a fact table is all...
January 25, 2012 at 1:40 pm
So I understand you want a different record set for every state? You can dump all the data into one table and create a procedure that pulls the data by...
December 30, 2011 at 9:54 am
Hi
So from your latest post, I gather you have a synonym to a remote table? That is, it points to a table on another database in the same machine or...
December 30, 2011 at 9:44 am
I think you need to spend a little time ensuring you have set up the mail profile and account correctly. You were given a couple of links earlier for setting...
December 8, 2011 at 4:30 pm
I assume you have turned on database mail in the surface area configuration (or through a script). Have you created a mail profile?
select [name] from msdb..sysmail_profile
December 7, 2011 at 3:01 pm
HI -
You can build a date hierarchy in a SSAS cube. You need a date dimension table, which is essentially a calendar table, as Jeff mentioned. From there as...
December 7, 2011 at 2:35 pm
I think the reply from frfernan is your best bet. To add to that:
You need not code an exact date, You can do like
SELECT lr.*
FROM lab_results lr
...
December 2, 2011 at 4:56 pm
I'd be interested in knowing if there is some activity on the export server that is using up CPU time, like a hung application not related to the database service....
December 2, 2011 at 9:58 am
You can also start a Profiler trace to get more information with events on that view object. There are a couple of event categories that may be worthwhile to look...
December 2, 2011 at 9:37 am
Quick correction to my prior post. Use the '?' as the place holder when using direct input. But you can still give the parameter a friendly name in the Parameter...
November 17, 2011 at 12:36 pm
Viewing 15 posts - 1,171 through 1,185 (of 1,231 total)