Forum Replies Created

Viewing 15 posts - 241 through 255 (of 806 total)

  • RE: Removing garbage from table

    You can use a dirived column and substring. What defines garbage? How will you recognise a compute name in the string?

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: SSIS Execute Process task timeout when run under SQL Agent

    is you run the package on the server through BIDS using the same user as Agent is running as?

     

    Sounds like a security type issue. What does Compact DB task do?...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: Can you use CASE function in Excel Source Editor?

    Not sure what the limitations are for Jet but obviously it's not working.

    Why not use a derived column and have the case statement in there?

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: Append To Output File

    Open the component, click on imputs and outputs. Highlight the Output0. In the properties panel, change the SynchronousInputID to None.

     

    This will detach your component's input and outputs. You will have...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: Another RAID Questions...

    According to BOL, your stripes should be 64k. (Same size as an extent)

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: Append To Output File

    If you are wanting to duplicate rows to your flow, add a script component, in the ouput properties, change it to async. In the script, you can process and pass...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: How Hard is Search?

    "Microsoft haven't quite got their heads around search tools yet"

    I disagree. I disagree with the word "quite". They just plain have not. Granted, an intelligent search engine must be difficult...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: sql question using IN

    You can use a left outer join to do the same.

    Show me everything in table 1 where not in table 2.

    So long as your columns are correctly indexed, it'll be...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: sql question using IN

    The point is always accuracy. No real reason behind a database if you answers are not accurate. Extra cycles used for the query are relative. If your query is taking 4...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: sql question using IN

    It becomes a non SARGable query then. Doing a left outer and left.column is null would be better. As already stated.

    http://www.sql-server-performance.com/tips/t_sql_where_p2.aspx

     

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: pass a parameter into a data flow to be used by a OLE DB source

    It's the same as a SQL task. You specify the query and place ? where you want parameters.

    You then map them to a variable by clicking on the Parameters button....

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: Out Of Memory error

    Is it SQL throwing the error or IIS? What's the event log say?

    2-3GB of memory used is not really that much. if you are using a 32 bit server, then...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: Package Configuration with Environment variables

    You are correct,

     

    SSIS loads the config file and tries to set the value of properties specified in the file.

    If a property path is not found, it cannot set it. The...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: Back Out Plan from 2K5 to 2K

    You cannot apply log back ups from 2k5 to 2k. Even if compatability is set to 2000.

    I kept the 2000 backup and all the log backups. after testing 2005 was...

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

  • RE: truncate a database(help required urgent)

    You cannot truncate a database. What are you trying to accomplish?

    You can drop all tables or truncate all tables but not truncate database.

    Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!

Viewing 15 posts - 241 through 255 (of 806 total)