Forum Replies Created

Viewing 15 posts - 376 through 390 (of 654 total)

  • RE: TSQL Backup script

    if you go into Studio Manager > Server Objects > Backup Devices right click on the Display_Backup, goto Properties > Media Contents, you will see that the back up with...


    Everything you can imagine is real.

  • RE: Help or Sugessions Appreciated

    i am failing to understand your requirement, do you want columns name to appear in the rows?


    Everything you can imagine is real.

  • RE: How do i write this Stored Procedure.

    oops too many programming languages. its actually the CASE statement

    check in BOL on usage but its pretty much the same as an IF...ELSE..


    Everything you can imagine is real.

  • RE: Data Obfuscation

    A fellow SQL Kung Fu fighter.


    Everything you can imagine is real.

  • RE: Itanium Dual Core

    probably 4 graphs


    Everything you can imagine is real.

  • RE: TSQL Backup script

    the problem with your script is that you are actually specifying a non existant backup device hence the error message. What you probably want to achieve is...


    Everything you can imagine is real.

  • RE: Trying to run dtexec as trusted connexion

    change

    User ID=sa;Password=titi

    to

    Integrated Security = SSPI


    Everything you can imagine is real.

  • RE: Porting Data

    you can customise your transform and put the changes in your script or instead of importing direct from the table you can write a query in which you do the...


    Everything you can imagine is real.

  • RE: SSIS- I can not save big packages

    try installing the latest service pack

    if that fails then consider splitting your package


    Everything you can imagine is real.

  • RE: how to dynamically copy whole sql 2005 database to an Access database (mdb)

    what is the error message that it gives you when it fails when doing the import using the wizard?

    an alternative is to write your own application using c#, vb .net...


    Everything you can imagine is real.

  • RE: Destination Script Component - multiple oledb.datareaders?

    change your code in the second part

    [PosactAReader = oledbcmdCheckAdjustment.ExecuteReader()

    If AdjustmentReader.Read() Then]

    to

    [AdjustmentReader = oledbcmdCheckAdjustment.ExecuteReader()

    If AdjustmentReader.Read() Then]

     


    Everything you can imagine is real.

  • RE: How to call Web Service From Script Task

    you can overload your webservice to accept serialised xml then i think you can store it as a variable in the script. how big is your xml output?


    Everything you can imagine is real.

  • RE: Porting Data

    create your column 1 in the destination table with identity specification (is identity) set to yes. You can use the import wizard in the BI Studio to port your data.


    Everything you can imagine is real.

  • RE: DB Lockup on Query?

    have you tried using table hints e.g. WITH NOLOCK


    Everything you can imagine is real.

  • RE: Default Key - Clustered or Non?

    clustered

    you can check on the index (+) thingy on the table in QA


    Everything you can imagine is real.

Viewing 15 posts - 376 through 390 (of 654 total)