Viewing 15 posts - 406 through 420 (of 599 total)
The query I posted above should get you this from what I can tell. If you're not getting the results you expect, why don't you post us an example of...
June 28, 2006 at 1:00 pm
I did it via a VB script task using FileSystemObject.
June 28, 2006 at 9:10 am
I'm not a neophyte by any means. I've been getting paid to play with computers for over 12 years. I've taken the trainings offered to me, learned what I could...
June 28, 2006 at 8:28 am
--as above, with minor modifications
create
table #tbl1 (col1 int, col2 int)
June 28, 2006 at 8:12 am
Is this what you're looking for: http://blogs.msdn.com/camerons/archive/2006/06/27/648194.aspx
?
June 27, 2006 at 1:59 pm
You might want to check out this article on Scan vs Seek:
http://blogs.msdn.com/craigfr/archive/2006/06/26/647852.aspx
June 27, 2006 at 1:17 pm
My favorite resources:
this website (look through the articles)
sql-server-performance.com
SQL Tuning by Dan Tow
I don't have this yet but it's definitely on my list:
Pro SQL Server 2005 Database Design and Optimization
June 27, 2006 at 10:30 am
You might want to post here:
http://forums.microsoft.com/MSDN/ShowForum.aspx?ForumID=95&SiteID=1
the MS folks tend to monitor these forums.
June 26, 2006 at 4:11 pm
SELECT
case when CHARINDEX(',',new_contributor) > 0 then
LEFT(new_contributor,CHARINDEX(',',new_contributor) - 1)
else
new_contributor
end as [LNAME],
case when CHARINDEX(',',new_contributor) > 0 then
--Change here
LTRIM(RIGHT(new_contributor,LEN(new_contributor)...
June 22, 2006 at 12:17 pm
Just noticed another bug. You parse based upon two different charindexes. In one case you're looking for ',', in the other you're looking for ' '. What of the last...
June 21, 2006 at 4:51 pm
create
table #tmp
(
new_contributor varchar(50))
insert
into #tmp
June 21, 2006 at 4:02 pm
Are you sure it's passing in '' and not some whitespace characters?
Have a look at this thread:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=288843
for some troubleshooting ideas.
June 20, 2006 at 11:42 am
Have a look at this article:
http://www.databasejournal.com/features/mssql/article.php/3572301
June 19, 2006 at 3:52 pm
After over 12 years as a professional developer, I am very much of the opinion: "If it ain't broke, don't fix it."
Sure, there are measures one can take to reduce...
June 19, 2006 at 3:14 pm
Locks are a necessary part of any update. Are there blocking / timeout issues?
June 19, 2006 at 2:23 pm
Viewing 15 posts - 406 through 420 (of 599 total)