Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)

  • RE: An Introduction to the SQLCMD Mode in SSMS (SQL Spackle)

    Very interesting... I just had to play and it was fun. However, I can't think of any clever usage for it, yet. But give me time, I'm...

  • RE: select query

    You have to alias the subquery in this case:

    select max(myDate) from

    ( select field_1 myDate from myTable

    union all

    select field_2 myDate from myTable

    union all

    select field_3 myDate from...

  • RE: Web Page - SQL Server Loading Issue

    The web page makes a call to the database which fires a stored procedure. On the times that it fails it returns a timeout error. If I go...

  • RE: Web Page - SQL Server Loading Issue

    The file being loaded is a plain old CSV file - names, addresses, etc. All ASCII characters and all demographic type information.

  • RE: Script to get an ordered list of all stored procedures with parameters

    Looks like a very handy piece of code; however, the first thing I did was add the following:

    SELECT * FROM @procedureListTable WHERE sch_name <> 'sys'

    which eliminates all of the system...

  • RE: Tables marked as System Table

    In order to get the current objects to lose the system attribute, you would have to script them out, drop them and recreate them. In order to do this...

  • RE: Tables marked as System Table

    This is a bug that was reported to Microsoft in 2006. (Timely attention to bugs...) The suggested solution at that time was the following:

    You have uncovered a bug...

  • RE: Audit Trail

    Andy,

    Thanks for your response.  I am going to pursue your connection string idea as it seems promising.  As far as the @@SPID goes, if use just the @@SPID, it gives...

  • RE: Audit Trail

    Thanks for your input.

    Unfortunately, we are not using Windows Authentication; therefore, the suser_sname is not unique.  This methodology overcomes the limitation of having a bunch of users that are logged...

  • RE: Is XML the Answer?

    XML is the answer if the question is "What comes after 'WML'?  What ever happened to the NSF format?  Oh, yeah, it was replaced by ANSI X.12.  But where is...

  • RE: Yukon Delayed Again and Named

    If Windows 95 is any sort of indicator, that must mean that SQL Server 2005 will be available in June 2007.

Viewing 11 posts - 1 through 11 (of 11 total)