Forum Replies Created

Viewing 15 posts - 901 through 915 (of 2,612 total)

  • RE: Using a trigger to update a table!

    "GO" is a batch spearator handled by the client. It is the equivalant of highlighting everything before the GO, executing the query, and then highlighting everything after the GO...

  • RE: SQL Server database versus Active Directory

    For awhile, we have a combination of some things stored in AD and almost everything else stored in databases (primarily Oracle, actually). All of the data has pretty much...

  • RE: Management Studio 2008 vs 2005

    I just tried. I was unsuccessful running the package. It deployed, but it errors. My SQL 2005 machine is running sp2 and CU 6.

    The documentation suggests it...

  • RE: Last value on SSIS Aggregate transformation

    You are probably better off simply dealing with it in the query you use to get your data.

    [font="Courier New"]CREATE TABLE #tmpData (

    HIST_ID INT NOT NULL IDENTITY(1,1)

    , PROD_ID CHAR(1) NOT NULL

    ,...

  • RE: Test Data

    Thanks Jeff.

    Apparently working in corporate IT for a decade has really honed my skills in the "Random Crap Generator" area.

  • RE: Insert Locks whole table

    That is the behavior you should get. When you are inserting or updating a record, you should be unable to select the same record. In SQL Server, you...

  • RE: implementing sound data warehouse

    If you don't understand even what the job is, why are you interviewing for the position? You should call them and ask what they are talking about. If...

  • RE: Has anyone written any interactive SSIS packages?

    For the other piece, I again would not try to do this prompting within the package. Since your plan is to run the package with multiple data sources, I...

  • RE: Has anyone written any interactive SSIS packages?

    This is really outside what is going to be reliable in SSIS.

    It is an ETL product, not a workflow management product. Creating a package that waits for user interaction...

  • RE: Screen scrapping(url) from Stored Proc

    Unless the data is actually in a gif or a jpeg, you should not have to screen scrape a web page to get the text. HTML is by definition...

  • RE: Left join without condition

    Please post your query.

  • RE: SQL Login details for a web application (Any Solutions here)

    Other than the default roles, you are going to have to explicitly do the grant when you create an object. You could give the users db_datareader / db_datawriter and...

  • RE: Low Latency Reporting Database Options?

    As far as service broker.

    Assuming you have a window at night to allow you to do a complete ETL to your reporting database, that would be my base process.

    For everything...

  • RE: Test Data

    rbarryyoung - Yeah, 36.

    Thanks for pointing out the fact that I forgot about the zero.

    Sorry, I was mid-laugh thinking about how many combinations there would really be.

  • RE: Test Data

    Well, if you used just letters and numbers - say all lowercase you have 35 characters.

    Enter 35^10 in calculator and see what you get...

Viewing 15 posts - 901 through 915 (of 2,612 total)