Viewing 15 posts - 1 through 15 (of 19 total)
Apologies. This was really quite simple so I should have worked it out before posting the question. I created a data-driven subscription which picks up the email address from a...
August 1, 2007 at 3:17 am
If you make sure that no collation settings are specified in the scripts that create the databases then they will use the default collation for the model database on that SQL Server...
June 30, 2004 at 2:53 am
DTS can do this for you in several ways. One way would be to write a simple query to select the data and then export it to a text file. You...
June 30, 2004 at 2:24 am
Ok thanks. I thought that was probably the case, but I wondered whether there was a workaround.
Paul
June 21, 2004 at 8:18 am
Thanks Greg that's useful. I just thought that there might be an option within DTS that would do this automatically.
Paul
December 18, 2003 at 9:31 am
Thanks both. Results match mine but your way is obviously a lot quicker and neater. More practice needed on joins for me I think!
Paul
December 5, 2003 at 7:23 am
Problem solved. App. was calling another sp which incorrectly included a GRANT statement (no GO between sp and GRANT). This meant that every time user connected sp was...
December 2, 2003 at 3:16 am
No there are no deny permissions anywhwere. I have dropped and recreated the sp (with sysadmin rights) but this has had no effect.
December 1, 2003 at 2:10 am
Here is the situation:
Windows 2000 user added to domain Global group. Global group added to Local group on SQL Server. Local group added to a user-created db role....
November 28, 2003 at 9:39 am
Yes, I see now. Sorry for my lack of understanding. The one thing this method doesn't do that Jonathan's does is pick up multiple occurrences of the string...
November 27, 2003 at 5:21 am
I've got it working using a cursor (again using authors table) but I'm not sure it's exactly what you meant (still needed PATINDEX):
DECLARE @au_id varchar(30)
DECLARE @TextPointer varbinary(16)
DECLARE @ReplaceStr varchar(8000)
DECLARE @SearchStr...
November 27, 2003 at 4:42 am
SELECT TOP 1 certainly improved performance. Couldn't get it working using @offset for WHILE condition.
As for David's point about updating variable for each iteration, I'm not sure how this...
November 27, 2003 at 3:45 am
I had a very similar problem with a stored procedure. The server with the problem was subject to a sudden power outage. After this it would not use...
October 20, 2003 at 5:05 am
Viewing 15 posts - 1 through 15 (of 19 total)