Forum Replies Created

Viewing 15 posts - 1,246 through 1,260 (of 1,479 total)

  • RE: database mail blues

    AV is Anti Virus. I’ve noticed that you wrote your message in the SQL Server 2000 forum. SQL Server 2000 doesn’t have DBMail. Instead it has SQL...

  • RE: bcp Command

    I assume that your application is running on a different server/work station then the one that your SQL Server is installed on. Do you have BCP utility on that...

  • RE: How to resolve "It is in the middle of a restore" error?

    That depends. If it is really in the middle of restore operation, then you will just have to wait until the restore operation is over. If on the...

  • RE: Doubt in sql-functions

    Pleas read about create function statement in Books On Line. You have to decide if you want to create an in-line table valued function or multi-statement table valued function....

  • RE: Doubt in sql-functions

    venki.ffcl (1/2/2009)


    dear friends,

    Can i use if condition in function ?

    Please give me a example

    thank you

    Why not check books on line for such a question? The first example of create...

  • RE: openrowset bulk insert

    If you’ll find a solution, pleas post it, so all of us will learn it.

    Adi

  • RE: openrowset bulk insert

    Unfortunately I wasn’t able to import the file and got the same error that you got. I played with it a bit, but no matter what I tried, it...

  • RE: openrowset bulk insert

    Timestamp is a data type that has noting to do with neither time nor date (and of course nothing to do with stamps?). Time stamp is a binary value...

  • RE: openrowset bulk insert

    The bulk provider was intreduced in SQL Server 2005. You can't work with it if you use SQL Server 2000.

    Adi

  • RE: Help with datetime sql

    When you use function in the where clause on the column, the server can’t use any index that was created on that column. Although the queries that were...

  • RE: SQL Server Backup Database Unable to Restore to SQL 2000

    It can't be done. You can restore a database that was backed up with SQL Server 2000 on SQL Server 2005, but you can't do it the other way...

  • RE: How to reduce MDF data file?

    You can use dbcc shrinkfile instead of dbcc shrinkdb. This enables you to select the file that you want to shrink and set the new size. The question...

  • RE: Can filters be applied on DBCC LOG( ) command?

    I don’t think that you can filter dbcc log command (unless there is a third parameter that can be used and I’m not aware about). If you do want...

  • RE: Common Mistakes in T-SQL

    Another one is managing transaction the wrong way. Specifying begin tran and commit tran only thinking that if there will be an error, it will automatically roll back the...

  • RE: How Identity field has been implement in SQL SERVER

    Aspet Golestanian Namagerdi (12/31/2008)


    we want to take out the Identity property in a large table for a project,which we do not have any problem with that.The problem is that,in case...

Viewing 15 posts - 1,246 through 1,260 (of 1,479 total)