Forum Replies Created

Viewing 15 posts - 376 through 390 (of 1,124 total)

  • RE: Expression syntax to use LTRIM in Conditional Split Transformation

    LTRIM([FirstName]) == ""

    LTRIM([FirstName]) != ""

    LTRIM([FirstName]) == "SomeValue"

  • RE: DBNETLIB]SQL Server does not exist or access...

    Does this link helped you?

  • RE: Matching employee application log ins to log outs

    I too had somewhat similar situation where I need to process a file (imported by the user) , then dump it in a table and return back data of that...

  • RE: Unique Constraint for 2 columns in SQL 2005

    Vijaya Kadiyala (3/31/2009)


    Hi

    Ramesh, Instead of Unique Constraint why can't we have Unique Index??

    Thanks -- Vijaya Kadiyala

    http://www.dotnetvj.com

    There are no significant differences between creating a UNIQUE constraint and creating a unique...

  • RE: Authentication Options

    It means that the user already exists in the database to which you are trying to grant access. This happens when you restore a database with existing users, the...

  • RE: AWE Enabled

    So, it means the the SQL Server is not running in AWE mode.

    Run these T-SQL commands to enable AWE:

    EXECUTE sp_configure 'show advanced options', 1;

    GO

    RECONFIGURE;

    GO

    EXECUTE sp_configure 'awe enabled', 1

    GO

    RECONFIGURE;

    GO

    After changing the...

  • RE: AWE Enabled

    Do you see the message "Address Windowing Extensions enabled." in your sql server error logs?

  • RE: Can't change directory in a backup

    To backup a database on a network drive, you either have to map the network drive on the sql server or use the UNC path in the BACKUP statement. ...

  • RE: Authentication Options

    The "authentication mode" setting is for the server and not for the database.

    The authentication information that you see in the database connection properties is about your current login...

  • RE: Data Archiving

    Though partitioning is the best option for archiving data, it is only available in Enterprise & Developer editions of SQL Server.

  • RE: Unique Constraint for 2 columns in SQL 2005

    Just as simple as this...

    -- Adding constraint to an existing table

    ALTER TABLE SomeTable WITH CHECK ADD CONSTRAINT [UK_SomeTable_SomeCompositeKey] UNIQUE( KeyColumn1, KeyColumn2 )

    -- Adding constraint when creating new table

    CREATE TABLE SomeTable

    (

    KeyColumn1...

  • RE: substract the quantity

    First of all, the query which I gave you will never return duplicate rows with same product and supplier, as you mentioned they are part of the composite key.

    rajeevgupta40 (3/30/2009)


    i...

  • RE: How we can increase Row Size limit for Order By

    I don't think one can change the limit of 8060 for ORDER BY clause because SQL Server internally creates intermediate work tables to do the sort operations.

    The following article lists...

  • RE: Standard Store procedure look like

    Personally, I don't like writing everything in a single procedure. Instead, I write procedures according to their need and follow these standard rules for any basic table.

    Take for an...

  • RE: Data Migration

    You are welcome, and I'm glad I could help you.

Viewing 15 posts - 376 through 390 (of 1,124 total)