Forum Replies Created

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

  • RE: having no luck with controlling flow

    Hi - Maybe I misunderstood but I read you need all five variables set to 1 before the next task in question should execute. In your code I see all...

  • RE: Twenty tips to write a good stored procedure

    In regard to operators, just quickly concerning negating operations, ie... someColumn <> 'string' ,

    don't forget that rows with a null in that column will not be returned. I just use...

  • RE: query to copy and work with data on different server

    If you want to transfer data from server 1 to server 2, you can create a linked server connection object on server 2 that point back to 1. From there...

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

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