Viewing 15 posts - 10,936 through 10,950 (of 18,923 total)
Did you even try my solution. I had the exact same problem as you had and I resolved it simply by executing a single line of code when creating a...
November 24, 2006 at 6:39 am
What's the difference in the execution plans?
November 23, 2006 at 11:13 am
Can you explain the process in details of what you are trying to do?
November 23, 2006 at 11:12 am
One way would be to use either dynamic sql or create a single sp for each combinaison of parameters possible. Then optimize them all separatly. I would do that ONLY...
November 23, 2006 at 10:05 am
Yes rethink this. What are you trying to do in that module?
November 23, 2006 at 9:53 am
Why would you want to do that exactly?? Those functions should be called when deploying the application, not during!?!?
November 23, 2006 at 9:50 am
I have no idea if this will work for 2005 :
Select * from master.dbo.sysperfinfo where counter_name = 'User connections'
EDIT 8000 ![]()
November 23, 2006 at 9:31 am
Please dot not cross-post, we monitor all boards. Finish the thread here : http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=146&messageid=325217
November 23, 2006 at 9:29 am
What happens if they run this : ALTER PROCEDURE dbo.SpName ....?
November 23, 2006 at 9:28 am
Thanx... Maybe I should have checked your post log before posting mine
.
November 23, 2006 at 9:08 am
Can you post the link from here to there or there to here so that we don't answer his question 3-4 times?!
TIA.
November 23, 2006 at 8:22 am
Can you post the query that is erroring out?
I suspect a cast (explicit or implicit) that would truncate the data is throwing the error, and not the dynamic sql itself!
November 23, 2006 at 7:58 am
We need to know the WHOLE ETL process to help you on this one.
Sample data and required transformation is needed also.
November 23, 2006 at 7:38 am
Nice article Steve. Just out of curiosity, how many e-mails do you currently send monthly?
November 23, 2006 at 7:10 am
No directly from sql server (unless using DTS). Here's what I would do :
IF EXISTS (SELECT * FROM dbo.SysObjects WHERE Name = 'DemoFMTONLY' AND XType = 'P')
DROP PROCEDURE dbo.DemoFMTONLY
GO
CREATE...
November 23, 2006 at 7:09 am
Viewing 15 posts - 10,936 through 10,950 (of 18,923 total)