Forum Replies Created

Viewing 15 posts - 136 through 150 (of 349 total)

  • RE: Restore DB

    Hello Sanjeev,

    Are you trying to restore a SQL 2005 database backup to SQL 2000 server?

    If so, it is not possible to restore a higher version database backup to a lower...

  • RE: "Send Mail Task" completing but where''''s my e-mail?!

    Hello Ali,

    You can create a log file for the DTS package and then execute the package, so that it logs all the information and you can track of the relevant...

  • RE: Delete all records from SQL Server table

    Hello Vic,

    Can you remove "*" from your delete statement and then try it. Also check whether the table is having any relationship with a parent table.

    Hope this helps you.

    Thanks

     

  • RE: Model database not owned by dbo SQL Server 2005

    Hi Jon,

    I think you can change the owner of the "model" database like this:

    1. Click on "model" database properties

    2. Select the page "Files"

    3. In "Owner", click on elipses (...) and...

  • RE: SQL Bulk Insert Problems !

    Hello John,

    It seems that the login with which you are trying to bulk insert the data, is not having enough permissions on the network / remote path.

    Operating System Error Code...

  • RE: dbcc traceon

    Hello,

    Trace flags, after they are enabled, remain enabled in the server until disabled by executing a DBCC TRACEOFF statement.

    To determine the status of trace flags, use DBCC TRACESTATUS. To disable...

  • RE: Scripting (NOT X-FER''''ING) logins in SQL 2005....

    Hello,

    I'm able to query the system table through the query provided by you.

    SELECT sid, name, xstatus, password

  • RE: Jobs are submitted under OLD servcie account

    Hello,

    In order to bring all the DTS related jobs under the new service account, you need to log into the box with the specified new service account, then open the existing...

  • RE: How to remove audittrace files?

    Hello,

    These files will be created by SQL Profiler. Please check "Process Info" under Current Activity and you might find a process dedicated for collecting audit trace information.

    Hope this helps.

    Thanks

     

  • RE: Upgrade 2000 to 2005; database still 2000

    Hell John,

    Have you checked the compatibility level of the database? 

    Thanks

     

  • RE: Help on DTS Export

    Hello Utsab,

    You can save the DTS package as a file. Open the particular DTS package and in the DTS designer, click on Package -> Save As

    Now you will be prompted...

  • RE: syntax for querying from a different server

    Hello,

    You can't select the data from a named instance like "servername\instance". You need to create / have linked server, so that you can use like

    select yourcolumnname from linkedserver.dbo.databasename.table1

    Look for Books...

  • RE: Problem with xp_sendmail

    Hello,

    First things first,

    1. Have you configured a mail profile with the domain account that the SQL Services are getting started?

    2. Have you tested to send a test mail from T-SQL?

    The...

  • RE: Hello friend i need to store the result of a dinamic query

    Hello,

    You can do it like this

    Decare @yourtable table

    (colname datatype,

    colname2 datatype)

    insert into @yourtable select col1, col2 from yoursecondtable where condition

    select * from @yourtable

    Hope this helps.

    Thanks

     

  • RE: restoring a copy of a db onto server where db came from

    Hello,

    You can restore the database with an alternate name to it and direct the specific data and log files to a different drive, if you have any. Then you can compare...

Viewing 15 posts - 136 through 150 (of 349 total)