Viewing 15 posts - 16 through 30 (of 38 total)
Jeff, your solution is working perfikly for me, thank you once again for the excellent help and advice. And thank you to Seph and Chris too!
Steve
November 18, 2008 at 5:09 am
Chris Morris (11/17/2008)
Jeff Moden (11/14/2008)
SELECT COUNT(*) FROM Master.dbo.SysColumns
If it doesn't work, there are one of two problems... either you don't have the privs to read from the master...
November 18, 2008 at 2:22 am
Msg 208, Level 16, State 1, Line 2
Invalid object name 'Master.dbo.SysColumns'.
I think my master database is screwed 🙁
We did have some problems a few weeks back with a maintenance routine...
November 14, 2008 at 10:48 am
And the collation is Latin1_General_BIN
November 14, 2008 at 10:19 am
Oh and the code
--=============================================================================
-- Setup
--=============================================================================
USE tempdb --DB that everyone has where we can cause no harm
...
November 14, 2008 at 10:18 am
Version: 8.00.760
I got exactly the same error which is why I tried the other page which was originally given in the first reply.
November 14, 2008 at 10:17 am
Hi Jeff, thank you for suggestion, as always I am grateful for your help and the help of others, I will endeavour to make it easier to get help in...
November 14, 2008 at 10:08 am
The key thing here for me is making sure the data is correct in the first place. Creating this function has brought to my attention all the variations and errors,...
November 14, 2008 at 8:20 am
Chris Morris (11/14/2008)
Dooza (11/14/2008)
I prefer Chris's solution, it returns the decimal just like I needed 😀
Seth's is almost identical identical apart from the datatype of the return value. He did...
November 14, 2008 at 8:06 am
I prefer Chris's solution, it returns the decimal just like I needed 😀
November 14, 2008 at 7:55 am
Hi Seth,
Thank for a possible solution.
The data is in our sales system, its not something that can be changed. I am using the function in a view, this view is...
November 14, 2008 at 7:13 am
A quick solution that I have just figured out is this
SELECT item AS DuplicateItem
FROM (SELECT DISTINCT item, description FROM #Import) AS dImport
GROUP BY item
HAVING COUNT(item) > 1
IF @@ROWCOUNT < 1
BEGIN...Is...
September 10, 2008 at 9:10 am
After reading about MS Deploy the other day, for deploying IIS and its content to production servers, I thought its about time the same existed for SQL Server, and now...
August 7, 2008 at 3:44 am
sql_er (7/25/2008)
Have you tried anything yourself?Have you progressed any?
Can you give us more details?
Sorry for the lack of detail, it was the end of a long frustrated week where I...
July 28, 2008 at 4:49 am
Dooza (6/18/2008)
June 18, 2008 at 6:48 am
Viewing 15 posts - 16 through 30 (of 38 total)