Forum Replies Created

Viewing 15 posts - 181 through 195 (of 221 total)

  • RE: Can't use a dynamic connection manager with Data Flow Task

    GSquared (11/1/2011)


    In the properties of any connection in SSIS, you can use an Expression for the Connection String, and can control the connection dynamically that way.

    That's what i've done so...

  • RE: DBCC COMMANDS

    sys.dm_tran_active_transactions will. I'm not aware of a way to get the statement from that but by looking at the sys.dm_tran_loks you'll be able to see what objects the tran...

  • RE: Shipping SQL Server Error Logs?

    I think i'd go down the SSIS route with some file system tasks...

    Thanks,

    Simon

  • RE: Shredding XML

    Thanks, that's more what i was after. 🙂

  • RE: Shredding XML

    It's ok.... cracked it.

    -- Query to return the item nos.

    SELECT

    convert(int,convert(varchar(50),I.query('text()'))) AS Item

    FROM

    @tableToHoldXML...

  • RE: DBMIRROR_SEND Wait type

    Do you have any benchmark ping times over the WAN? It may be worth investigating the response time over the WAN to see how it compares to "normal operations". If...

  • RE: RUN JOBS THROUGH T SQL

    Hi,

    Thanks, sorry, i should have said the the job steps will need to be appropriately configured.

    Simon

  • RE: RUN JOBS THROUGH T SQL

    Hi,

    Check this:

    http://msdn.microsoft.com/en-us/library/ms186757.aspx

    That'll probably do the trick for you.

    Thanks,

    Simon

  • RE: Backup / Restore Maint plan?

    Hi,

    Use this:

    ALTER DATABASE YourDB SET SINGLE_USER

    Then drop it.

    Thanks,

    Simon

  • RE: Backup / Restore Maint plan?

    Hi,

    You may want to investigate doing this using SSIS. I do something very similar but restore a copy of our latest DEV base database over my own local copy.

    Essentially the...

  • RE: 2 questions on Replications

    Hi,

    1) No, it can replicate all 3.

    2) Yes if you set up replicate schema changes to TRUE.

    Thanks,

    Simon

  • RE: Courses?

    Hi,

    Whilst i didn't actually attend this course (a colleague of mine did) i did go through the course material. I found it very useful because at the time i was...

  • RE: How can we get the SQL server Intelligence

    Hi,

    If you mean intelli-sense then i'm afraid native support for this in SQL Server 2005 is not available.

    There are a few 3rd party tools that will give you this...

  • RE: Specific Error 5(0x5)

    Hi,

    If I were you'd i'd start by looking at the error logs in the Log directory for your SQL instance. I'm sure there'll be some useful information in there.

    Mine are...

  • RE: SQL Replication

    Hi,

    I would look into mirroring if I were you it sounds like it meets your requirements better. Also, if you're using a .NET application to connect to the DB you...

Viewing 15 posts - 181 through 195 (of 221 total)