Forum Replies Created

Viewing 15 posts - 6,061 through 6,075 (of 13,469 total)

  • RE: what it should return max(name)?

    it would return strings that start with the highest ascii value;

    i would expect it to return a string that starts with the letter "z" if it existed, and if there...

  • RE: db link access

    newbieuser (1/18/2012)


    Thanks a lot.

    Another question, when the users run a select on the Oracle table via linked server from SQL db, will there a lock created in the sql...

  • RE: SSMA and SYSDB

    did you migrate your data into the [sysdb] instead of a different database?

  • RE: SSMA and SYSDB

    five_ten_fiftyfold (1/19/2012)


    We have a system that has been ported from Oracle using SSMA. I can find very limited info about permissions for the SYSDB database. I've noticed that there is...

  • RE: SQL SERVER(T-SQL)

    when you have a result set where the order matters, you must have an ORDER BY clause; in your example, you'd need an additional column that you want to order...

  • RE: What is the safest less risky way to move System Databases to another Server?

    for the scripting of jobs and linked servers, look in the script section here; there's several that do a great job there;i haven't done it in a while, so i...

  • RE: "Scrollable" list on the page

    all Reporting services is is a front end for generating html from your data; there's no built in ScrollableArea object, so you'll have to expand your boundaries a little bit...

  • RE: bulk insert from csv file and physical order

    mymistake, it's the TABLOCK option that prevents parallellism for BULK INSERT:

    BULK INSERT BULKACT FROM 'c:\Export_o.txt'

    WITH (

    ...

  • RE: bulk insert from csv file and physical order

    i think you also want to set MAXDOP =1 during the bulk insert as well as inserting into the identity table as sturner suggested.

  • RE: "Scrollable" list on the page

    this is really an html question, more than a report server question, i think.

    you can do it with a div, by putting the table/list in the div;

    it would end up...

  • RE: db link access

    yes, but it takes a little bit of configuration on your part: you need at least TWO Oracle users in the Oracle database to accomplish this; one for when YOU...

  • RE: Increment columns with same name

    DBA_SQL (1/18/2012)


    I actually need to update an existing column with incremental numbers..as shown... Can you help me to...

  • RE: Foreign Key Constraint

    another option is to have each table hav a foreign key to the designation instead;

    much easier and makes sense to me:

    the "designation" table would just be a lookup table.

    CREATE TABLE...

  • RE: Foreign Key Constraint

    i would just add two separate foreign key columns, one to each table, and a constraint to prevent both foreign keys from existing for a given record;

    then if a...

  • RE: DataType Issue From Oracle to SQL

    it depends; you have to look at oracle and see the size that is assigned; you can't just read NUMBER, when you describe the table you need the size also:,...

Viewing 15 posts - 6,061 through 6,075 (of 13,469 total)