Forum Replies Created

Viewing 15 posts - 541 through 555 (of 582 total)

  • RE: db ownership

    Maybe you can get the developers to do the following:

    1. Create the table in EM.

    2. Create a script of the table (right click on table, all tasks, generate sql script.

    3....

  • RE: What rights to give for creating tables.

    Thanks! That worked!

  • RE: Matrix how to question

    Not quite what I had in mind. I meant that a third dataset should do calculations. Maybe your third dataset is based on a UNION query or a...

  • RE: Matrix how to question

    I think you should create a third dataset that does the calculations for you in the query.  Base the third matrix on that dataset.

    Kathi

  • RE: DTS packages transformation

    Are you asking how to get the passwords back?  If moving to another server, it is probably different anyway.

    My rule #2 is don't use sa.  I usually use Windows authentication...

  • RE: Maintenance Plan Backup for Multiple DBs

    It backs up all 4, one at a time, then deletes files.  If you are short on space, you can create a separate maintenance plan for each database or look into...

  • RE: Searching Text Fields

    You can also use LIKE:

    Select * from myTable where myTextField like "*red*"

    Or in SQL Server

    Select * from myTable where

    myTextField like '%red%'

  • RE: Requery and stay on current record

    You'll have to write some code.  Create a button on the form and change the lable to "Refresh".  Add code to the click event

    The code (not debugged) looks like this:

    Dim ID...

  • RE: Matrix report subtotal formatting

    Thanks!  That was what I needed to know.  The totals and subtotals were always picking up the formatting of the data cell -- that is what I meant by "the...

  • RE: Can the end user manipulate rendered reports?

    If you mean to hide/display data, you do that by changing the Visibility properties of the row or textbox.  For instance, you may want to hide the report details and...

  • RE: MSDE 7 and SP4

    I found the solution -- maybe it will help someone else.

    Even though I new better, I must have tried to install the service pack via Terminal Services. I have...

  • RE: Help with strange DTS problem

    Thanks for your replies. I actually found a logic error in the package that was causing my problem.

  • RE: Dynamic SQL question

    Getting rid of the "go" and adding the "exec" worked.

    Thanks for your help!

    Kathi

  • RE: Help with strange DTS problem

    I finally found a logic error with the package. What is odd is that it actually ran correctly when run manually.

    There are 4 independent multi-step processes running....

  • RE: DTS Techniques: Problems & Questions

    You will see this behavior if you use the wizard to import data (All Tasks->Import Data).

    Use DTS Designer by going to DTS Services -> New Package. ...

Viewing 15 posts - 541 through 555 (of 582 total)