Forum Replies Created

Viewing 15 posts - 736 through 750 (of 1,838 total)

  • RE: Partitioning Data on First Character

    Do you have any requirement for the availability of the data while it is being moved?  I believe the data would be unavailable while being moved from the faster SSD...

  • RE: Compare data sets and find matches.

    I guess I'd import the data that's not in the database, and depending on how they need to "match", I'd use an INNER JOIN between the 2 tables if only...

  • RE: Partitioning Data on First Character

    I think the problem with using the statistics is that a range (represented by a row in DBCC SHOW STATISTICS or sys.DM_DB_STATS_HISTOGRAM) can easily cross letter boundaries.  I did some...

  • RE: Blocking but not sure why

    that is probably just the most recent query that the blocking SPID ran, it may still be holding locks from a previous INSERT, UPDATE, or DELETE.  You can query sys.dm_tran_locks...

  • RE: Strange login connectivity issue

    Database admin(DBA) - Friday, September 15, 2017 1:25 PM

    Login failed for user ‘Microsoft\DBA’ . Reason: Token-based server access validation failed with an...

  • RE: Sql Help

    jason 50597 - Friday, September 15, 2017 12:51 PM

    How can I get the orderid from the previous query?

    The first query can return...

  • RE: SSIS data flow fails but inserts a few rows

    Yes, it's quite possible for this to happen, especially for a data error in the source. 
    There is a way to control the records per transaction, fFor example, in...

  • RE: High Memory consuming by Database

    amitsingh308 - Wednesday, August 7, 2013 12:10 AM

    Hello Everyone,I have a database which size is 250 GB and it contains the information...

  • RE: Occasional mysterious time outs on SQL Server db table

    Sergiy - Thursday, September 14, 2017 4:52 AM

    UPDATEs always incure locks. Always.Even if you have (NOLOCK) hint in the statement - it's...

  • RE: The struggle to renormalize data

    Jeff Moden - Thursday, September 14, 2017 5:38 PM

    You mentioned what you don't like.  What method for large data transfers do...

  • RE: The Randomness of Analog

    CJSA_TeachSQL - Tuesday, September 12, 2017 8:42 AM

    ...I hate the way the streaming services have 50 different lists that contain the same...

  • RE: Need to create a "done" file step.

    A workaround I've used for the situation Lowell describes is to create the file in a "working" folder, then once done, move it to a "ready" folder.

    On the...

  • RE: ERD for Customer Payment Information

    I think we would need more information to figure this out, consider the following:
    1.  "One customer can only create one account identified by the customer’s email address"
    -  A...

  • RE: New company use c# code instead of SSIS

    I've used version control with SSIS packages for many years and never had a problem.  There hasn't been too many times I had to go back to a previous version,...

  • RE: Creating a table from existing table.

    sgmunson - Wednesday, September 13, 2017 1:41 PM

    Try using a column list instead of *.   It's a particularly good habit to get...

Viewing 15 posts - 736 through 750 (of 1,838 total)