Forum Replies Created

Viewing 15 posts - 136 through 150 (of 180 total)

  • RE: Design and index question

    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

  • RE: Help wanted for an interview...

    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...

  • RE: Database Design and Reference Tables

    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...

  • RE: Database Design and Reference Tables

    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. ...

  • RE: Mapping a drive with a batch file through a Job

    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,...

  • RE: Database Design and Reference Tables

    *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...

  • RE: xp_CmdShell - Giving Back - Sproc ShortPathName

    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...

  • RE: xp_CmdShell - Giving Back - Sproc ShortPathName

    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 *...

  • RE: xp_CmdShell - Giving Back - Sproc ShortPathName

    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....

  • RE: Use T-SQL to determine file in use

    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...

  • RE: Use T-SQL to determine file in use

    Thanks Dinesh - looks good. I'll play around this weekend...

  • RE: Getting Up to Speed on SQLCLR and .NET

    Greg, I'm in the same boat (although with less coding experience - I did a VB 6 course about 3 years ago )....

  • RE: SQL course

    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...

  • RE: How do you spell S-Q-L?

    My 2cents (South African cents = +- 0/16 p )

    The "SEM" also through me. I refer to it as EM, or more frequently...

  • RE: Administering a Development Environment

    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...

Viewing 15 posts - 136 through 150 (of 180 total)