Forum Replies Created

Viewing 15 posts - 2,176 through 2,190 (of 2,612 total)

  • RE: This is bugging me... how do you close the results frame after running a query

    It is on the SQL Editor toolbar. I think it is hidden by default. Look at the Add Remove Buttons menu.

  • RE: How to check if a Stored Procedure is running?

    Rather than checking if something is running, you should lock a resource. If your procedure can take an exclusive lock on a table or row, it will automatically wait...

  • RE: can i reference the shared data source in my Code in SSRS?

    In the script transformation editor dialog, there is a connection managers section that you will have to add your connection manager to.

    You must use a .Net connection manager, not an...

  • RE: Idle user's connections

    If you run the system stored procedure sp_Who2 you will see a LastBatch column indicating the last time a batch was executed by the spid. This is probably your...

  • RE: select data between 2 periods

    Actually, 3 is the slowest once you have indexes on the table. Since you are using a function against your table column, SQL cannot use an index and it...

  • RE: SSIS package Scheduled Job Fails

    You need to tun on logging to get the actual error messages from your SSIS package.

    As an alternative, log into the server that is executing the package with the login...

  • RE: Sort Order

    Again, if you are really stuck and have a query being executed from some code that you cannot get to, you can use a plan guide to add the MAXDOP...

  • RE: Excel destination work sheets.

    The document is rather rough, but I hope it helps. This is getting into some advanced SSIS concepts so without any experience it may be hard to follow.

    Take note...

  • RE: SSIS package Scheduled Job Fails

    The server on which you scheduled the packages needs to have the SSIS services installed, needs to have the backward compatibility pack installed, and really should have the same service...

  • RE: Sort Order

    It has to do with the way SQL 2000 and SQL 2005 handled parallel processing.

    In SQL 2000, the database engine did not use multiple threads very efficiently. Because of...

  • RE: Excel destination work sheets.

    If you know the number of groups you have at design-time, you can use a conditional split into one data flow per group and create one "table" per data flow...

  • RE: Cubes and Views

    I believe on the advanced tab of that same dialog, you could write some custom MDX that does what you are suggesting.

    However, I have never tired to ue it in...

  • RE: Cubes and Views

    Configure your users grouped into roles that define the data they can access. I have attached a screen print from Management Studio that shows where you should be when...

  • RE: Cubes and Views

    How is your cube security currently configured in Analysis Services? Do you have just a single role with everyone having access to everything at the moment?

  • RE: Cubes and Views

    If you include a dimension that contains members describing the data individual users should be able to access, you can specify by user or group in the cube security that...

Viewing 15 posts - 2,176 through 2,190 (of 2,612 total)