Viewing 15 posts - 2,161 through 2,175 (of 2,267 total)
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...
May 30, 2008 at 10:03 am
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....
May 30, 2008 at 9:50 am
you can use the ForEach Loop container in BIDS
to loop through your folders to find the latest files.
May 30, 2008 at 9:26 am
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...
May 30, 2008 at 5:53 am
Sorry i meant a primary key is required for replication, not identity column...
so not really that relevant to the discussion...
May 30, 2008 at 3:01 am
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...
May 29, 2008 at 11:00 am
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...
May 29, 2008 at 9:50 am
May 29, 2008 at 8:41 am
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...
May 29, 2008 at 8:25 am
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...
May 28, 2008 at 6:47 am
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...
May 28, 2008 at 3:48 am
Okay makes sense.
Post the DDL of the table and im sure someone can help you out..
May 22, 2008 at 11:12 am
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
May 22, 2008 at 10:48 am
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...
May 21, 2008 at 9:52 am
Viewing 15 posts - 2,161 through 2,175 (of 2,267 total)