Viewing 15 posts - 18,706 through 18,720 (of 18,926 total)
This works for me.
Declare @Names as varchar(8000)
set @Names = 'SysObjects, SysIndexes'
--this is in your stored proc :
set @Names = ',' + Replace(@Names, ' ', '') + ','
Select Id, Name,...
January 11, 2005 at 11:22 am
What's the matter Frank... you seem a little bummed out???
January 11, 2005 at 8:56 am
Are the lines added at the top or the bottom of the code??
Also one thing to might solve the problem is to use GO and the beginning and the end...
January 10, 2005 at 7:50 am
I have no other idea taht can help you. Maybe some of the gurus can find an answer to your problem.
January 8, 2005 at 10:34 pm
RPC means remote procedure call. I don't know if it has anything to do with the RPC event in the profiler that is raised when you call a stored...
January 7, 2005 at 6:17 am
have you tried?
SET @strSQL = @strSQL + ' WHERE im_id LIKE ''%'+@inputSearchText+'%''
im_name LIKE ''%'+@inputSearchText+'%''
OR im_desc LIKE ''%'+@inputSearchText+'%'''
January 7, 2005 at 6:03 am
Hmmm I tried his code and it works for me... can't see the problem from here. The only thing I can think of is that you may have 2...
January 6, 2005 at 2:44 pm
A similar suggestion had already come up but the prospect of a custom error message was appreciated. But your point still stands that updates are not denied with this...
January 6, 2005 at 11:14 am
You're trigger would look something like this if you do my final idea
CREATE TRIGGER [trTest_IO_Insert] ON [dbo].[Test]
INSTEAD OF INSERT
AS
SET NOCOUNT ON
--makes sure that the table is empty and that...
January 6, 2005 at 9:36 am
This could become an automated task... but the best option is to find out why you're stuck at 30 mb... I can't help you on that matter since I never...
January 6, 2005 at 8:28 am
I have never used a splitting software for automation tasks but I'm pretty sure winrar could do it. Here's a search from download.com that could get you started on...
January 6, 2005 at 8:03 am
I haven't read the whole thread but I'm just pitching in with my first idea. Since it seems that you can send up to 30 mbs, couldn't make small...
January 6, 2005 at 7:37 am
I guess it all depends on the documentation system in place... but a well placed "this table can only have 1 row at the time for x reason" can...
January 6, 2005 at 6:46 am
No just for any developper that tries to insert in that table... The end user doesn't need to hear about this.
January 6, 2005 at 6:21 am
Thanx Jeff for the input. It shows that there's always many different ways to achieve the same result with SQL server. But even with this new solution I'd...
January 5, 2005 at 8:53 pm
Viewing 15 posts - 18,706 through 18,720 (of 18,926 total)