Forum Replies Created

Viewing 15 posts - 53,356 through 53,370 (of 59,068 total)

  • RE: The SQL * Wildcard

    high hit volume GUI = very high volume OLTP 😀

  • RE: Last Modified Date

    The script that Minaz points out is for the data... not the table schema.

    There is no way to audit changes/modifications to a table's schema in SQL Server 2000 through the...

  • RE: SSMS Tricks

    !! DIR C:\Temp

    Not real sure I'm happy about THAT working because the following also works...

    !! DEL C:\Temp\some file name

    Great article of tips, Steve... thanks.

  • RE: The SQL * Wildcard

    Now that would be a good reason... can't see it making much of a difference in non-looping batch code, but I can see where it could make a heck of...

  • RE: Performance Problem when using Caching

    Sure and understood... but, with proper indexing, good set based code, and the like, access will be extremely fast without having to go through a cache layer that needs to...

  • RE: Update Rowcount

    I still need to see how you're calling the proc because that might be part of your problem...

  • RE: do DBAS need local system admin privileges? and why?

    Heh... then there's shops like what I used to work for... I'd not only be the DBA, but I was also the OS guy, the guy that built the computer,...

  • RE: The SQL * Wildcard

    Understood... but the interviewer from Microsoft asked why it's better to list all of the columns than to use Select *...

  • RE: The December Energy Update

    What would really be "cool" is Low Temperature Differential Stirling Engines. Design one that would work at 70-90oFd Diiferential (would be kinda large but light-weight) that would kick out...

  • RE: The SQL * Wildcard

    Yep... maybe that too. Same thing goes with statistics, I suppose.

  • RE: do DBAS need local system admin privileges? and why?

    It just seems very odd to me that you want a DBA to drive your very expensive truck but you won't even let him/her check the pressure in the tires...

  • RE: Update Rowcount

    What are you using to call the proc? In other words, let's see the EXEC statement 'cause the code in the proc is mostly correct. Only thing wrong...

  • RE: Formatted Date in Default Contstraint

    Heh... to many conversions and concatenation for me... the following does the trick as well...

    SELECT STUFF(CONVERT(VARCHAR(30),GETDATE(),107),1,3,DATENAME(mm,GETDATE()))

  • RE: The SQL * Wildcard

    The best answer would be "to protect the results". I've seen it happen before... DBA's can decide there's a problem with a table or they need to instantiate some...

  • RE: bcp export with spaces in columns

    Thanks for the feedback! Good to know that it wasn't BCP.

Viewing 15 posts - 53,356 through 53,370 (of 59,068 total)