Forum Replies Created

Viewing 15 posts - 676 through 690 (of 2,612 total)

  • RE: Correlated Subqueries

    I would suggest you help us help you a bit:

    http://www.sqlservercentral.com/articles/Best+Practices/61537/%5B/url%5D

  • RE: Integration Services

    Oh - if you did not know, always use "SQL Server Configuration Manager" to change service account information rather than directly in the services. The configuration manager does some...

  • RE: Integration Services

    Did you change anything with the service accounts after installing MSSQL and SSIS? I would recommend you go into the "SQL Server Configuration Manager" and change the service account...

  • RE: "Select *" from a view

    SELECT * FROM ViewName

    This is not bad if you really need all columns and all rows from the view. MSSQL will still use whatever execution plan it deems best...

  • RE: Integration Services

    Look for the services or open surface area configuration in the SQL 2005 start menu.

  • RE: Embedding function calls in a query

    You could do that or possibly enable and use snapshot isolation - which would allow you to maintain a consistent version of the tables involved in your query without blocking...

  • RE: Embedding function calls in a query

    It will not work. That is really a way of specifying an alias for the column name, it is not an assignment statement. You will need to call...

  • RE: Database Migration

    Rather than changing every field, you may want to figure out which fields actually need to be unicode and only change them. Depending on what applications connect and how...

  • RE: Data Warehousing?

    I suppose so. Neither definition even specifies a computer be involved.

    If you had a shelf with an abacus for each week displaying revenue, as long as you promose to...

  • RE: What Would You Recommend for Internal Web-App. Reporting?

    First, you really should direct efforts to users never taking the results of reports and making modifications. I know this is sometimes difficult, but it is not only inefficient...

  • RE: Corrupt SQL table

    When you delete, it does nothing, or runs forever?

    If you have foreign keys to this table (it being the PK table) every other table that may reference the record you...

  • RE: Kill Process older than 2 Days

    Some system processes remain active from the starting of the MSSQL service to the stopping on the service.

    If the processes in question are not system processes (coming from an application)...

  • RE: A derived column question

    Sorry, I did not test it.

    Yes, I think it is the single quote issue.

    Basically concatenate two zeros (as a string) to your number and then take the right 2 characters.

  • RE: More filegroups or just more harddrives in the RAID??

    I don't think RAID 5 with 8 hard drives is 2x faster than RAID5 with 4 hard drives.

    Regardless, RAID5 is slow and the first step to speeding things up would...

  • RE: load multiple files into single destination

    You can take multiple data flow streams and put them together using a UNION ALL component in your data flow. Then you will be able to direct them to...

Viewing 15 posts - 676 through 690 (of 2,612 total)