Viewing 15 posts - 136 through 150 (of 180 total)
Let me take a shot at some of this for you. Please forgive me if the explanation is convoluted/unclear - I haven't tried to explain this before
March 20, 2006 at 8:33 am
I can't answer all of this, but some thoughts that come to mind:
1) Across multiple countries, so usage of Nvarchar is something to consider.
2) Agreed - likely to want to...
February 9, 2006 at 5:22 am
Fair enough. Perhaps my call for a removal was a bit harshly worded.
I do recall seeing something before about "Steve (he) said that it was not possible for him/them to...
September 27, 2005 at 9:01 am
Finally, I disagree with those that want the article removed from the site, or fault the SSC editors with allowing the article. This site is for the exchange of ideas. ...
September 27, 2005 at 8:46 am
Hi,
I've had to do similar things, due to different domains that don't have trust. below see a piece of code that is used - note there are some UGLIES here,...
September 27, 2005 at 5:46 am
*phew*
Glad to see I'm not the only one who reacted in horror to this article! Sadly, it seems that this has been seen...
September 27, 2005 at 5:40 am
Fair enough. I'm trying to use xp_cmdshell less, since it typically ends up being ugly work arounds.
You may be right in terms of xp_cmdshell not going - I sure...
September 20, 2005 at 2:20 am
An alternaitve for you, using the undocumented xp_FileExist stored procedure:
--EXAMPLE
set nocount on
set quoted_identifier off
create table #direxists
(FileExists int,
FileIsDir int,
ParentDirExists int)
declare @movepathdata varchar(255)
set @movepathdata = 'c:\hello.txt'
insert into #direxists exec master..xp_fileexist @movepathdata
select *...
September 19, 2005 at 3:55 am
Hmm - well, here's a response
I notice that you are using:
Set @rc=Common.dbo.PathExists(@LongPath)
So you should probably include the code for that SP....
September 16, 2005 at 8:53 am
Ever wondered if a file was available to copy, for example a SQL backup file? Here’s something interesting, although I’m not 100% certain of the risks it...
September 16, 2005 at 7:36 am
Thanks Dinesh - looks good. I'll play around this weekend...
September 16, 2005 at 6:18 am
Greg, I'm in the same boat (although with less coding experience - I did a VB 6 course about 3 years ago )....
September 6, 2005 at 9:54 am
Can't comment on courses, but I can recommend a good book (in fact, 2 good books):
"The Guru's Guide to SQL Server Stored Procedures, XML and HTML" by Ken Henderson
"The Guru's...
September 6, 2005 at 9:48 am
My 2cents (South African cents = +- 0/16 p )
The "SEM" also through me. I refer to it as EM, or more frequently...
August 18, 2005 at 5:17 am
On this topic, I agree with the concerns raised about "blanket refreshes", yet I do see the value of regular, simple refreshes. With that in mind, I did the following...
August 10, 2005 at 8:00 am
Viewing 15 posts - 136 through 150 (of 180 total)