Forum Replies Created

Viewing 15 posts - 1,171 through 1,185 (of 1,243 total)

  • RE: Replication user account

    It is suggested you use a single domain account for all SQL server agents, a domain admin to allow access to share folders. Make sure it has 'log on as...

    ----------------------------------------------------

  • RE: date time in ssis

    Do dbcc useroptions to see what lanugage you are using. Us_English will recognize 10-11-12 as Oct 11 2012. But British English will see it as Nov 10.

    From here do...

    ----------------------------------------------------

  • RE: A Versioning system for SSRS

    Great article and imagination, about all I would suggest is toward the end of the trigger ...

    FROM

    WHERE Content IS NOT NULL

    ...

    ----------------------------------------------------

  • RE: Replication

    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...

    ----------------------------------------------------

  • RE: Moving existing indexes to new filegroup,sql server 2008

    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...

    ----------------------------------------------------

  • RE: Compare dates & Using Indicators

    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...

    ----------------------------------------------------

  • RE: The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value.

    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...

    ----------------------------------------------------

  • RE: Configuring SQL Server 2008 R2 Change Data Capture with SSAS

    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...

    ----------------------------------------------------

  • RE: DELETE statement won't complete

    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...

    ----------------------------------------------------

  • RE: Add new user in SQL server 2000/2005 through script

    To create a database user account for an existing login,

    sp_grantdbaccess @loginname = 'loginname'

    ----------------------------------------------------

  • RE: securing a particular report in ssrs

    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.

    ----------------------------------------------------

  • RE: a book to help me to know the basics of building a cube in Analysis Services.

    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...

    ----------------------------------------------------

  • RE: Date Format

    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"...

    ----------------------------------------------------

  • RE: Using column alias in my where filter

    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.

    ----------------------------------------------------

  • RE: Help on inserting into multiple table with distinct columns simultaneously

    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...

    ----------------------------------------------------

Viewing 15 posts - 1,171 through 1,185 (of 1,243 total)