Forum Replies Created

Viewing 15 posts - 11,896 through 11,910 (of 13,469 total)

  • RE: How to update SQL Server table from a Temp table

    ok, since it appears the databases exist on the same server, you could do this:

    Update DataBase1.dbo.MyTable2 m

    SET m.field1 = ##MyTempTable.field1

    FROM ##MyTempTable

    WHERE m.field2 = ##MyTempTable.field2

    Update DataBase2.dbo.MyTable2 m

    SET m.field1 = ##MyTempTable.field1

    FROM...

  • RE: Secondary Backup / Restore Strategy

    you can get a USB Terabyte and a half external drive for as little as 180 bux; whether you zip/rar an backup, or use a 3rd party tool, tha tmight...

  • RE: Insert into table

    if the table already exists:

    INSERT INTO License_Audit(LicenseType,LICENSECOUNT,AUDITDATE)

    SELECT 'MENU',COUNT(USER_ID) AS LICENSE_COUNT ,getdate()

    FROM VMFG.dbo.LOGINS

    WHERE PROGRAM_ID = 'MENU'

    to create the table on the fly:

    SELECT 'MENU' AS LicenseType,COUNT(USER_ID) AS LICENSE_COUNT ,getdate() AS AUDITDATE

    INTO...

  • RE: Is there a better way for this code?

    his query comes from a different system originally, not all dbms can use the UPDATE...FROM syntax, and instead use the style you see here....set somevalue = ([subquery referenncing the updating...

  • RE: Is there a better way for this code?

    i think this part of the query is contributing to the slowness:

    AND a.LineNum <= D_BomCalcTrans_t05_t.LineNum

    because that can't be resolved as...

  • RE: How to update SQL Server table from a Temp table

    you are going to kick yourself...you did all the work, and are just missing the UPDATE ...FROM part:

    Update MyTable2 m

    SET m.field1 = ##MyTempTable.field1

    FROM ##MyTempTable

    WHERE m.field2 = ##MyTempTable.field2

  • RE: Installed 2000 Standard, but version is showing Personal

    yes you are right; and this is wierd;

    if the OS is 2003, then it should install 2000 standard version; if it is saying personal edition, that is not right....

    is it...

  • RE: Installed 2000 Standard, but version is showing Personal

    in a nutshell, you can't.

    you'll have to upgrade your operating system.... SQL 2000 standard or enterprise can only be installed on Server version operating systems...Win2000,2000 advanced server, 2003;

    The cd gracefully...

  • RE: Convert Binary Data to XML in a select

    see if this will help;

    here i'm just taking a static value and casting it to binary, then casting it back again.

    i believe that is all you'll have to do; it...

  • RE: Query in 2000 returns in 1 second, in 2005 it runs for more than six minutes

    SQL Noob (11/5/2008)


    once in a while we have weird problems like this and most times it's in a database that has been around since SQL 7 and continually upgraded across...

  • RE: SLOW PERFORMANCE AFTER 2000 TO 2005 UPGRADE

    in another thread on a similar issue, where his 2005 server was slower than his 2000 with the same query, someone finally identified that in their case, they had seen...

  • RE: Identity Insert Skips records

    you might need to review your web app for errors....

    the identity is incremented even if there is an error in your code.

    here's an example: the third insert will fail....the value...

  • RE: Why we need to use UPDATE STATISTICS ?

    David i don't know how useful it is, since for me it doesn't seem to be accurate;

    I've updated statistics on a table for example, but this report give me results...

  • RE: Collecting information about servers and DBs..........

    a lot of the information you ar elooking for(like IP address) is not stored in any database, so it can't really be done in TSQL without using something like xp_cmdshell...

  • RE: SELECT WHERE NOT IN query

    i think if this query:

    SELECT DISTINCT Cust_Num FROM fs_Unit

    returns a null in the distinct collection, you'll get no results;

    you might need

    SELECT DISTINCT Cust_Num FROM fs_Unit WHERE Cust_Num IS NOT NULL

Viewing 15 posts - 11,896 through 11,910 (of 13,469 total)