Viewing 15 posts - 1 through 15 (of 29 total)
Not sure I fully understand..
You have:
1. A flat file with Column1,Column2,Column3 and no delimeter
2. You need to split the data as TableA (ID,Column1,Column2) and TableB (ID,Column3)
July 18, 2012 at 6:58 pm
Hi there henry,
I know this post is quite old, however it would be interesting to find out if you have found a solution?
Regards
June 18, 2012 at 5:30 pm
Thanks for the input...as mentioned in the original post...the objective is to monitor the health across multiple servers and multiple instances.
I will download and try the mentioned packages and hopefully...
January 16, 2012 at 2:34 pm
Great thanks ...for the input.. it is most valued
December 12, 2011 at 3:24 pm
Hi Dave23,
Thanks for the response....We are using SQL2005 at the moment and are considering upgrading......so this might just be the nail in the coffin...:)
One question though... does the 2008 native...
December 12, 2011 at 2:44 pm
Run the following, it will produce "Last_Updated"
DBCC SHOW_STATISTICS ('TABLENAME',INDEXNAME );
October 25, 2010 at 11:07 pm
Read this on how to resolve some collation conflicts:
http://www.sqlusa.com/bestpractices2005/collatedatabasedefault/
January 10, 2010 at 12:42 pm
Nabha (1/5/2010)
thlubbe (1/4/2010)
Might be your worth reading this article on SSChttp://www.sqlservercentral.com/articles/Large+Data+Sets/68930/">
http://www.sqlservercentral.com/articles/Large+Data+Sets/68930/
A broken link
HHmmmm....
Try Now:
http://www.sqlservercentral.com/articles/Large+Data+Sets/68930/
January 5, 2010 at 11:15 am
Might be your worth reading this article on SSC
http://www.sqlservercentral.com/articles/Large+Data+Sets/68930/">
http://www.sqlservercentral.com/articles/Large+Data+Sets/68930/
January 4, 2010 at 5:47 pm
1. Is this inserting T2 to T1 a recurring event or a once off?
2. Is T2 structure a mirror of T1 structure?
December 30, 2009 at 7:20 pm
Datawarehouse design is very complex and requires years of experience... are you sure this is what you are after, and not just a large database for relatively simple data analysis?
I...
December 30, 2009 at 1:57 pm
The error occurs in the ORDER BY clause as no columns by the name of nCount exists
replace :
ORDER BY nCount, PracticeAddressFirstLine, Name
with
ORDER BY nPracticeAddressFirstLine,PracticeAddressFirstLine, Name
December 29, 2009 at 8:25 pm
Interesting though.....:cool:
This might explain it
Due to the fact that the sub-query in a correlated sub-query can be executed for every row returned in the outer query, performance can be degraded....
December 29, 2009 at 7:30 pm
Viewing 15 posts - 1 through 15 (of 29 total)