Forum Replies Created

Viewing 15 posts - 6,301 through 6,315 (of 7,429 total)

  • RE: bcp problem data changes

    Can you post you bcp command line?

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Geting all records from 10 days ago till now.

    Unless you want to run from Midnight start of day 10 ago thru today current then look at CONVERT options to return date part only. For instance if you are...

  • RE: How to use hint in sql server

    Hints usually are not needed in the cost based method of querying data in SQL. You basic syntax I really could work without the where as I have no idea...

  • RE: Dynamically declaring a cursor

    Personally using a cursor in VB app on the server is bad for performance especially if you have a lot of clients. However if you can post what you have...

  • RE: Alter Table and Column to Allow Nulls

    I believe it is simply

    ALTER TABLE tblName ALTER COLUMN colName NULL

    on the table with the foreign key reference. Or are you wanting to enable allow nulls for the duration then...

  • RE: Dynamically declaring a cursor

    Not without writing the entire process dynamically in a string and executing so it all runs in the same user context.

    "Don't roll your eyes at me. I will tape them...

  • RE: SQL Extended Procedure Functions Contain Unchecked

    Not always unexpected as Security patches have a shorter test cycle than SPs. If you can reporduce this effect on another machine then definently report to Microsoft. They may not...

  • RE: Memory Leak with SQL 7

    Ok let's try this again, SQL will try to keep cached as much as possible so that access to data resources can be as efficient as possible. Utilization of upto...

  • RE: DTS of Master Detail Tables

    Why not just set you PK field to non-autogenerated and since PK's are unique the value comming in from Oracles PK should be fine. Or you may consider doing an...

  • RE: Mass Update

    Try something like this:

    UPDATE tblPC SET location_name = 'fillintheblank' WHERE asset_tag IN ('List','Of','Asset','Tags','Here')

    as long as all the locations will be the same. But you can use for common groups as...

  • RE: DateAdd Help....Using a variable for datepart

    Sorry the function deveopers in SQL did not leave a way for this to be done in SQL with dateadd. The only was is to build the SQL string dynamically...

  • RE: Error after DTS "Save As"

    When you say you are using a direct proxy connection can you elaborate on this? I ned to make sure my understanding is what you are talking about. Maybe I...

  • RE: Reducing Round Trips Part 4

    Nice ad simple, I have always been a proponent for XML and using to reduce access needs to the server.

    "Don't roll your eyes at me. I will tape them in...

  • RE: Get Indexes Fields

    Change to this in the Get Indexes Field section

    -- Get Indexes Field

    (SELECT 1 FROM sysobjects c_obj, syscolumns col, sysindexes i

    WHERE c_obj.uid = user_id()

    AND c_obj.id = col.id

    AND col.id = i.id

    AND c_obj.xtype...

  • RE: Query to retrieve top records

    Missed that one too. I see your difference now and agree that I may be missing something else as well in regards to itemcode since you point that out.

    "Don't roll...

Viewing 15 posts - 6,301 through 6,315 (of 7,429 total)