Forum Replies Created

Viewing 15 posts - 1,831 through 1,845 (of 3,060 total)

  • RE: time taken to perform etl process

    tripri (6/21/2010)


    I got a database of 20gb . Now i want to perform ETL process on that database so as to copy that entire database into another server.Approximately how much...

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
  • RE: Table partitioning automatic procs

    jaiki987 (6/21/2010)1. Is there a better way to work this problem other then stored procedures and jobs.

    2. Are there are scripts or white papers out there that have tried to...

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
  • RE: What to check first in server when we had issue with sql server

    Ask yourself these questions:

    - Is the system up?

    - Is the system available?

    - Can users connect?

    - Is workload consistent with baseline for this day at this time of the day?

    - Are...

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
  • RE: Calling an Oracle Refcursor from SSIS

    Johnathon Wilde (6/21/2010)


    Thanks for the response! I know where you're going with that, in regards to why would you call a Refcursor from SSIS rather than just do a...

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
  • RE: Calling an Oracle Refcursor from SSIS

    I do not have an example for SSIS and I'm having a hard time trying to imagine why a refcursor is needed in such scenario.

    Let me show you how a...

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
  • RE: Car incident db design

    I think showed relationship between IncidentTable and RoadUserTable is not correct or doesn't exist at all.

    Please validate all relationships.

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
  • RE: What protocol does SQL Server use on a network? TCP or HTTP or FTP?

    duanecwilson (6/18/2010)[/bWhat protocol does SQL Server use on a network? TCP or HTTP or FTP?

    HTTP is a hypertext transfer protocol.

    FTP is a file transfer protocol.

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
  • RE: Car incident db design

    Doesn't show cardinality, sorry - can't read it yet 🙂

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
  • RE: speed issues

    mike 57299 (6/18/2010)Currently, the network is 100BaseT. We are going to upgrade it to Gigabit and see if that helps.

    No matter how fast the network is it will always...

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
  • RE: Car incident db design

    liuc (6/16/2010)...foreign keys are not shown in the diagram

    Would you mind in showing relationships? othewise it gets real hard to understand navigation.

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
  • RE: Using linked server for archiving

    I see, not a pure archival resource but an archival/reporting one. Fair enough.

    500 Meg is not a huge volume of data to be moved in a daily basis - provided...

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
  • RE: odbc connection to oracle

    Is it a batch job?

    I would check scheduler, look at what the job is executing.

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
  • RE: Using linked server for archiving

    David Webb-200187 (6/16/2010)Any advice would be appreciated.

    Did developer say why he wants to archive in a different box?

    Is the box local or remote?

    How big is the pipe in between the...

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
  • RE: Applying trigger or functionality to a new column

    1 - Add new column. Check "alter table add column" syntax.

    2 - Write an update query to implement business logic.

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
  • RE: How Much Free Space Should I Leave?

    Robert Biddle (6/16/2010)Your statements seem to match other stuff I've come across.

    ... are we good or what? 😀 Glad to help.

    _____________________________________
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at Amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.

Viewing 15 posts - 1,831 through 1,845 (of 3,060 total)