Forum Replies Created

Viewing 15 posts - 6,451 through 6,465 (of 7,191 total)

  • RE: CHANGE RATE OF DATA

    Deb

    You don't say what version of SQL Server you're using, but if it's 2005, have you tried the dynamic management views?  They begin with sys.dm_ and they have a lots...

  • RE: Transaction log backups filling up much of the space --please help

    You could have your transaction log just truncated and not backed up while the optimization job is running.  Then, when it is finished, take a full backup of the database...

  • RE: Add specific RowNumbers

    --Table

    CREATE TABLE LineNums (INVOICE int, linenum int

  • RE: Inserting Data from Another Database

    Abhay

    If I had to put money on it, I'd say that your tables aren't owned by dbo.  You've confirmed that both tables are owned by the same user, and you've...

  • RE: Inserting Data from Another Database

    Abhay

    Does this work?

    USE QISPD

    Insert Into QISPD2.dbo.VisitInfo (VisitId, patientId, admitDate, VisitType, spotriasUniqueId)

    Select visitId, patientId,...

  • RE: SQL 2K SP4 Upgrade

    Mark

    Are you doing this on a production sever?  Have you tested it first?

    There are certain things to look out for.  For instance, I think SP4 limits the pairs of data...

  • RE: Inserting Data from Another Database

    Abhay

    I don't really know.  I take it both databases are on the same server?

    Do you get the same error if you just do this? SELECT * FROM QISPD.dbo.visitInfo

    What...

  • RE: Inserting Data from Another Database

    Abhay

    So it sounds like visitInfo doesn't exist in QISPD, or if it does it's not owned by dbo, or maybe you don't have permissions on it.  Or perhaps you have...

  • RE: Inserting Data from Another Database

    Abhay

    Assuming both abc tables have an identical structure and are owned by dbo:

    INSERT INTO QPR.dbo.abc

    SELECT * FROM XYZ.dbo.abc

    John

  • RE: Export users from role

    Have you tried sp_helprolemember?

    John

  • RE: Distinct with no order

    The order of the rows in a table has no meaning in a relational database system.  Does your table have a primary key constraint?  If so, you can order by...

  • RE: Restore backup Problem

    "I don't know why management studio only shows fisical drives, and not mapped drives"

    I imagine it's because the drive is mapped in the context of your login and not in...

  • RE: change/move of Data file without dropping subcription

    Happycat is right - backing up and then restoring to a different location is the best way.  However, I don't think detaching and re-attaching will work, since I believe this...

  • RE: database collation

    Adrain

    Right-click on your server in Enterprise Manager and choose Properties.  The server collation appears on the General tab.

    John

  • RE: Eliminate Duplicate rows

    Certainly not the best way of doing it, Anders, but since you and I have both asked how he decides which duplicate rows to keep and haven't had a proper...

Viewing 15 posts - 6,451 through 6,465 (of 7,191 total)