Forum Replies Created

Viewing 15 posts - 1,531 through 1,545 (of 2,387 total)

  • RE: Import a csv file

    You may also consider using DTS with 'transfor data task (ActiveX Script)' to do that.

    Here is the example of ActiveX Script.

    '**********************************************************************

    ' Visual Basic Transformation Script

    '************************************************************************

    ' Copy each source...

  • RE: How much disk I/O is 'a lot'?

    Do you perform database statistics update and optimization regularly?

  • RE: How much disk I/O is 'a lot'?

    The data of 'Container' was cached into memory after first run and that is why the second test has less physical read.

    You still need to examine the execution plan and...

  • RE: ODBC / Security Issue

    I would suspect the user does not have access to these two dbs. Is MDAC version same in these two servers?

  • RE: How much disk I/O is 'a lot'?

    Cut and paste the query into QA, set 'SET STATISTICS IO on' and execute it to display information regarding the amount of disk activity generated by the Query. If there...

  • RE: Why would SA not have all Rights?

    Go to SQL Serevr Agent Property --> Job system --> uncheck 'Only user with sysadmin .....' and try again.

  • RE: Multiple Filegroups

    Try this.

    select object_name(sysind.id) as TableNme, sysind.name as ObjName, sysfg.groupname as GroupName

    from sysindexes sysind

    inner join sysfilegroups sysfg

    on sysind.groupid = sysfg.groupid

    inner join sysobjects sysobj

    on sysind.id...

  • RE: log DROP TABLE events?

    Try Lumignet Schema Alter at http://www.lumigent.com/downloads/schemaalert/ and it is free.

  • RE: Launcing DTS packages from Stored Procedures

    For example, exec master..xp_cmdshell 'dir c:'

  • RE: Incorrect Sysfiles and master..sysaltfiles

    quote:


    Is this true and I have to live with this behavior


    Unless upgrade to...

  • RE: Incorrect Sysfiles and master..sysaltfiles

    quote:


    BTW, SQL 7 SP3 on Win2k.


    It doesn't work on SQL Server 7.0.

    Use sp_helpfile to...

  • RE: Space Available 0.0

    With @updateusage = 'true', sp_spaceused actually executes 'DBCC UpdateUsage' in it.

  • RE: Archiving Changed Data

    Two special tables are used in trigger statements: the deleted table and the inserted table.

    The deleted table stores copies of the affected rows during DELETE and UPDATE statements. During...

  • RE: Launcing DTS packages from Stored Procedures

    You need permission to run xp_cmdshell and execute a DTS package using the DTS Run utility from xp_cmdshell.

    Examples from BOL.

    Examples

    To execute a DTS package saved as a COM-structured storage file,...

  • RE: collation

    You may use SQL collation as Dictionary order, case-insensitive, for use with the 850 (Multilingual) character set and manage character data in international databases with Unicode nchar, nvarchar, and ntext...

Viewing 15 posts - 1,531 through 1,545 (of 2,387 total)