Forum Replies Created

Viewing 15 posts - 16 through 30 (of 34 total)

  • RE: Career Advice...what is next after SR SQL DBA ?

    If you are looking to combine the technical with the mangerial and business side of the eq then think about BI. BI is where the new money is IMHO and...

  • RE: Training for DBA job?

    If you want more in-depth knowledge of database systems separate from any one product, take a look at the graduate certificate program from the University of Maryland University College in...

  • RE: question about SQL Server for business

    Yes SQL Server will work for the project, so would Oracle, Sybase, and DB2. Depending on the requirements you may also use MySQL, or PostgreSQL but would run into some additional...

  • RE: Upgrade sql server from sql 2000 to sql 2005

    Could you expand more on your question? Are you asking for the prerequisites for installing 2005 on a new box or are you asking about migrating databases from sql 2000...

  • RE: ETL

    ETL: Extract, Transform, Load

     

    Also thought of as get the data, clean the data, and load the data.

  • RE: Analysis Services Processing Task Fails when run as Scheduled Job

    Create a new user that is a member of the olapadmin group and in the DTS package in the Microsoft OLE DB connection when you are in the DTS design view change...

  • RE: Importing data from Access table to SQL Table

    To sum up your options:

     

    “One is a timestamp column in the SQL table. I need...

  • RE: Move to an iMac?

    The Mac OS is not suited to a business environment for one critical issue, it has a thread ability problem. In Lmbench 3.0 measurements of OS...

  • RE: SQL Bulk upload works on one server but not on another

    If this is an XML Bulk upload then make sure that the agent running the bulk load is a memeber of the bulkadmin fixed server role in SQL Server.

    Also are...

  • RE: Table Design

    I have to agree with a previous poster. You are much better off not using Identity as a PK (ever). It is a meaningless PK because it does not enforce...

  • RE: Why Upgrade?

    Let us be realistic please. If you need a complex ETL tool, you are not considering SQL2005. Seriously, individuals that need a complex ETL tool...

  • RE: Book on SQL programming from set approach

    The book I use for teaching includes indepth set theory approach to SQL and relational systems and relational algebra. THis may be too academic a book for what you are...

  • RE: Open a file by using ActiveX from a task on a DTS package

    You should be able to execute the .bat file from DTS using the Execute Process Task object in the DTS Task area of the DTS designer window. If you tried...

  • RE: A question about servers

    I agree with Tinker. The slowest part of any database is the disk subsystem and I/O contention will kill performance. Is the contractor also recommending going with separate physical arrays...

  • RE: Passing Variables into xp_cmdshell

    Thanks for all your help. It definately put me on the right road.

    I went with:

    Declare @cmd varchar(100), @path varchar(50), @path2 varchar(50)

    SET @path = (Select column from table where condition = 'condition')

    SET...

Viewing 15 posts - 16 through 30 (of 34 total)