Forum Replies Created

Viewing 15 posts - 12,961 through 12,975 (of 13,457 total)

  • RE: BigBrotherClient and CIMW32Ex

    Big Brother® is a Web-based systems and network monitor. A universal color-code interface of "red is bad and green is good" allows anyone to measure the health of a network...

  • RE: truncate table

    i'd speculate that someone tried to truncate a table that was referenced by a foreign key, got an error, and assumed that it was not supported;

    truncate table deletes all the...

  • RE: Combining rows in same table

    to really help, we'll need the real schema; use enterprise manager, select the table, right click>>All Tasks>>Generate SQL Scripts

    paste the results here;

    you can join the same table on itself when you...

  • RE: Combining rows in same table

    without knowing the table structure for sure, something like the sql below is what you need. an inner join shows only matches...so if a company in table1 did not have...

  • RE: Add a column with Alter Table

    My shop is similar to yours Tristan; we deploy upgrade scripts that add tables or columns, alter columns, migrate data, etc. Those scripts are expected to be performed on lots...

  • RE: Reading Binary Data

    After I Saw Davids answer, I gave my head a good slap because I knew better; I had even started writing a function when David posted the right answer.;

  • RE: Add a column with Alter Table

    you can use Enterprise manager to create the scripts for you;

    go to design view, edit the design of the table and notice the little used button at the top named...

  • RE: Add a column with Alter Table

    The answer really is no; the right way to do it is to create a new table witht he column in the middle, migrate the data to the new table,...

  • RE: static and dynamic table

    you might be confusing a VIEW with "dynamic tables"; a VIEW is really a SELECT statement which has been saved, and is automatically updated whenever the underlying tables it references are...

  • RE: Can this Query be Tune up ! Its going to kill a server

     

    here's my suggestions.

    SELECT PRODUCTCODE, CONVERT(VARCHAR(30),EVENTDATE,103) Startdate,

    COUNT(DISTINCT(PERSONURN)) AS 'BILLABLE CDRS',

    COUNT(*) - COUNT(DISTINCT(PERSONURN)) AS 'COUNTS',

    SUM(CASE WHEN EVENTTYPE & 4 = 4 THEN 1 ELSE 0 END) AS 'CUSTOMER',

    SUM(CASE WHEN...

  • RE: Oracle 2 SQL 2000

    why can't you import into SQL , and after the import is completed alter the column definition to be a datetime field, or add datetime columns and migrate the data...

  • RE: Msg 6501 - Can''''t Create Assemblies

    I think it has to do with the filepath containing a space between 'jeff seeman' and 'Documents and Settings' as well;

    so it finds the file 'c:\Documents' and fails.

    if a filepath...

  • RE: Why is spam still a problem?

    the problem with this is what about all those forums you subscribe to to keep abreast of questions...I probably belong to a dozen different forums for various interests.

    $108 ($9 x...

  • RE: Severity Level 18: Nonfatal Internal Error Detected

    i poked around the MS KB, and wow they are purposefully vague on how to fix any underlying conditions that might raise error 18; i'm going to watch this thread...

  • RE: How do I similate SQL Server 2005s "EXECUTE AS" clause in SQL Server 2000

    why not just grant permission just to the specific procedure, instead of a role that has too many rights?

    grant execute on pr_truncate_table to webdev

Viewing 15 posts - 12,961 through 12,975 (of 13,457 total)