Forum Replies Created

Viewing 15 posts - 301 through 315 (of 1,222 total)

  • RE: SQL Agent Question

    SQL Server Agent runs as a service and does not need you to be logged on for it do it's stuff. If you are logged off, that will not...

  • RE: Iif condition in total by descripion

    try the following:

    =Iif(Fields!IsOrder.Value = 1,"Total " & Fields!ProjectName.Value & " by " & Fields!SuppNo.Value & " : ","Total " & Fields!ProjectName.Value & " test by " &Fields!SuppNo.Value & " (excluding...

  • RE: 2008 SQL replication

    What would be the impact on my production server for this ( i know if i try to force a replication with the snapshot replication the DB Becomes...

  • RE: Reporting Services backup(Reports/Rdls)

    Out of the box, Microsoft include a tool that you can use to do this - "RS.Exe". You can find this is folder "C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn" - or...

  • RE: Need help for a small ETL practice problem

    The server name in the connection manager you use for servers P and Q determines where you get or send data to. SSIS doesn't really care. It simply...

  • RE: VB 6.0 applications needs to replicate data

    If the 3 options you list, only one of them will automatically resume processing following a network outage. This is replication. In your environment, you would need to...

  • RE: SQL With Browser Disabled

    SQL Browser is responsible for telling the client which port to use for an instance of SQL. If it is not running then you will not be able to...

  • RE: 2008 SQL replication

    If you only need this once a day, why not simply restore a backup to the reporting server. You should be able to automate this using SQL Server Agent.

    FYI...

  • RE: Missing SSAS project

    There is an Analysis Services project that Imports from an existing AS database. Create a new project in BIDS and select this project, point it at your existing database...

  • RE: replication from 2005 to 2012

    Yes you certainly can replicate from 2005 to 2012. The distributor must be the highest version of each of the database servers participating in replication - in this case...

  • RE: Is it possible in SSRS?

    You should be able to do this by using the "go to URL" action (not the "Go to Report" action).

    You will need to create a string that is the full...

  • RE: SSRS report with dynamic column headers

    As akhileshguha05 suggests in his last post - use a matrix report. The column headings will be the values found in the dataset (e.g. the months of this year)...

  • RE: domain\server$

    First - AD accounts that end in $ are accounts that are created when a server or workstation is added to the domain. The name of the account is...

  • RE: SSIS Dataflow source, inline query or SP

    Personally, whenever I can I use stored procedures in whatever application I am writing.

    However, when you are extracting data from a vendor application, you may not be allowed...

  • RE: SSIS Flat File Import Error

    Unfortunately for you, the flat file source expects all records in the file to have the same structure. So, if you have a different number of fields in your...

Viewing 15 posts - 301 through 315 (of 1,222 total)