Forum Replies Created

Viewing 15 posts - 1,186 through 1,200 (of 1,226 total)

  • RE: Filter the Dataset Fields through Parameters

    The above post makes a good suggestion. The alternative would be to do something like

    If @parameter = 'column1'

    select column2, .., column N

    from ...

    else if @parameter ='column2'

    select column1, column3, ....,...

  • RE: How to Unzip the file Using script task

    Exexute Process task,

    you state the likes of the working directory and type a command as you would in a CMD window. The command is specific to the app you...

  • RE: Reports (using cursors)running slow after migration to sql 2005

    Also if you haven't done so, try having the reports call a stored procedure and pass paramaters as opposed to building the query in the report. THis reduces network traffic...

  • RE: Query help..

    So to put it plainly you are merely joining the table to itself where the from date of a given row is between the from and start date of another...

  • RE: xp_cmdshell

    It appear you have your string inlcude the EXEC portion already. When you run EXEC (@osql) it seems to come down to

    Exec Exec XP_CMDshell .....

    ELiminating this may not not...

  • RE: Table locked?

    Just to cover the basics, is the table on a remote machine? Can you query other tables? I am just wondering if the issue is not an errant windows process...

  • RE: SSRS report error : Multi value parameter report error only with Select All

    I've seen this myself. There seems to be no pattern to the occurences. I wonder if it gets fixed with the application of the latest service pack.

  • RE: Fulltext searching very slow

    Try tuning you indexes, NOLOCK is guaranteed to read uncommitted transactions but not necessarily guaranteed to improve performance.

  • RE: Data migration using SSIS

    Not sure of all the features of MySQL but it may have an import wizard that you would execute after you had your tables in place. Also don't forget to...

  • RE: checking constraint I think

    Just a note:

    For every trigger defined on a table, SQL must run through the code of each to see what action, if any, is called for. Thus this may...

  • RE: SQL Server Instances

    My understanding of an instance is that it acts as if it is another server without actually needing to buy another server. Thus I assume all the permissions/checkpoints you normally...

  • RE: SQL Server Instances

    I tried querying using your suggestion on a couple of instances on one of our machines. I was not successful. Maybe I am missing something.

  • RE: How to query data on weekly basis

    I have a similar report that runs on a schedule. Before I even published it I created to new datasets, one for the start time and one for the end...

  • RE: Queuing, locking and synchronization in sql server 2005

    In case you haven't , my recommendation is to learn on BOL about ISOLATION. Then also look at the indexes and tune those.

  • RE: SQL Server Instances

    One benefit of instances is that when you create a linked server connection to a database in another instance (of the same machine) then data does not have to travel...

Viewing 15 posts - 1,186 through 1,200 (of 1,226 total)