Forum Replies Created

Viewing 15 posts - 2,161 through 2,175 (of 2,267 total)

  • RE: DTS QRY URGENT

    Do you need to do the intial processing using DTS?

    you could create a batch file that goes into each directory and copies out the latest file to...

  • RE: Help regarding average function

    without full details it is hard to suggest a solution, but you should be able to use the HAVING clause to have aggregate functions behave like a where clause....

  • RE: DTS QRY URGENT

    you can use the ForEach Loop container in BIDS

    to loop through your folders to find the latest files.

  • RE: SQL Injection

    http://www.youtube.com

    there is a lot of them there.

  • RE: 1.5 Million Rows. How to Optimize Query?

    You're joining a multi-million row table to a function?

    join FREETEXTTABLE(table1, description, 'application') AS ft ON table1.id1 = ft.)

    Is there a more efficent way to use Full text indexing?

    I...

  • RE: To get next working date for the given date...

    Sorry i meant a primary key is required for replication, not identity column...

    so not really that relevant to the discussion...

  • RE: What is wrong with this SELECT query??

    The problem could be in the where clause , the last OR statement means that the other conditions are ignored and it will select where firstnames is null put...

  • RE: excel in ssis package

    Either;

    Import the file as a CSV and tell the flat file connection manager to start from the 5th row.

    or

    Add a conditional split in your package to split out the first...

  • RE: CASTing

    nvarchar has a max length of 4000 not 8000

    the 'N' in this statment converts it;

    set @C = N'hello'

  • RE: CASTing

    The one two days ago was casting to a length greater than the nvarchar data type max of 4000, so the length was truncated to 4000. The one...

  • RE: To get next working date for the given date...

    Tomm Carr (5/27/2008)


    An identity column? Why? What purpose does it serve? Under what circumstances would you ever use it?

    an Identity column is required for replication, this would be...

  • RE: Copy Database one server to another

    If your database is not in production then use the detach and attach method.

    Detach your database from your source server,

    Right Click on db --> Detach Database.

    Attach the database...

  • RE: Database Design for 100GB DB

    Okay makes sense.

    Post the DDL of the table and im sure someone can help you out..

  • RE: Database Design for 100GB DB

    CrazyMan (5/22/2008)


    Does this make a difference on the performance??

    You are doing the exact same thing twice , unless there is some reason for this , then it will affect performance

  • RE: No Index on Tables

    Table structure is what the table contains, the names and types of columns contained in the table, expand the table node in SSMS to have a look at the...

Viewing 15 posts - 2,161 through 2,175 (of 2,267 total)