Forum Replies Created

Viewing 15 posts - 1 through 15 (of 39 total)

  • RE: How to migrate over 100 SSIS packages into a new solution quickly

    You can use an XML configuration file to be read at runtime.

    So all you would have to do is change the configuration file to point to a different database.

    The initial...

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

  • RE: SSIS inserts are very slow

    Is the GUID your clustered index key as well?

    If so you are probably seeing lots of page splits when you are doing inserts.

    Best way of speeding that up would be...

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

  • RE: Better way of moving huge data

    Bulk Insert will almost always be the fastest way to tranfer large amounts of data.

    Best way is to create a SSIS package to transfer the data and schedule a job...

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

  • RE: Can you have too much memory?

    As others have mentioned adding more memory can mask inefficient queries that you won't notice until the server starts using more memory.

    When you look at an inefficient query, it may...

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

  • RE: Can somebody recommend reliable sql backup software?

    Or just take time to learn the features of native SQL backup first before going into any third party route. SQL 2008 improved upon the older version with compression...

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

  • RE: Multisite/Geo Clustering for Windows 2008R2+SQL2008EntR2

    Or just wait until Denali releases which should be sometimes next year.

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

  • RE: "State" is a keyword

    It's reserved to follow ANSI SQL-99 standard as a keyword.

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

  • RE: Upgrade a SQL Servr 2005 Cluster under Windows 2003 to SQL Server 2008 R2 Cluster under Windows 2008

    Number two should be the simplest way to a clean install.

    I don't see any issue with restoring 2005 sql backup on sql 2008 r2.

    We are expecting to do the same...

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

  • RE: Data compression in a field - is it possible?

    You can create a CLR function to compress and decompress the data and call the function to store and retrieve data.

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

  • RE: Locking/Blocking issues

    Two really useful tool for detecting blocking is sp_whoisactive and server side trace with blocked process report. Latter will allow you to actively monitor and log blocking info and...

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

  • RE: Missing Database

    Did you look in the data and log directory to see if the data and log files are there?

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

  • RE: Problem using IF EXISTS(SELECT * FROM MYVIEW)

    That query would run the fastest if there was a nonclustered index on MyColumn.

    Otherwise it would have to scan through the entire clustered index to get the count and it...

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

  • RE: Inserting identity value into more than one column

    why don't you do the insert within a stored procedure and you can do all the logic within the proc?

    I don't believe there is any way of doing what you...

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

  • RE: understanding pages

    Grant Fritchey (6/13/2011)


    In addition to videos which can be incomplete, I'd suggest getting a copy of Kalen Delaney's book "SQL Server 2008 Internals." It's a must own.

    I second this.

    It will...

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

  • RE: Store Huge Files in database

    You want SQL Server to index the contents of your file?

    What type of file are you going to store?

    -------------------------------------------------
    Will C,
    MCITP 2008 Database Admin, Developer

Viewing 15 posts - 1 through 15 (of 39 total)