Viewing 15 posts - 1,156 through 1,170 (of 1,226 total)
Great article and imagination, about all I would suggest is toward the end of the trigger ...
FROM
WHERE Content IS NOT NULL
...
October 24, 2012 at 3:04 pm
You'll need MS DTC running if you are using 'immediate updating' updateable subscriptions. The other option is 'queued updating.' Here the changes are stored at the client and pushed when...
October 5, 2012 at 4:19 pm
One thing I saw on MSDN and worth noting:
"Because the leaf level of a clustered index and the data pages are the same by definition, creating a clustered index and...
October 5, 2012 at 4:07 pm
THis is not the cleanest way but for those who dont have the lookup functionality in SSRS...if you can import the data to the current database using a temp table...
October 5, 2012 at 1:59 pm
Your database login may have a default language different than English, or the production server's default language may not not match the one to your login. Maybe the agent for...
September 25, 2012 at 3:47 pm
Surrogate keys are a great way to keep track of multiple instances of the same entity (product, person, ...). You can add a validFrom and validTo date fields to also...
September 21, 2012 at 2:46 pm
Is it possible there is replication whereby both updates need to occurr at the same time (publisher / subscriber) ? If so there could be an issue on the other...
September 18, 2012 at 3:26 pm
To create a database user account for an existing login,
sp_grantdbaccess @loginname = 'loginname'
July 10, 2012 at 11:57 pm
Have you tried to configure the permissions by connecting to the reports service through mangement studio? There you can select each report folder and/or report item and adjust them individually.
July 10, 2012 at 11:10 pm
There are books on Analysis Services 2008, etc... However a good search result that lands you on the pages of an educational institution is a good way to start. You...
April 17, 2012 at 11:45 pm
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
Viewing 15 posts - 1,156 through 1,170 (of 1,226 total)