Forum Replies Created

Viewing 15 posts - 31 through 45 (of 66 total)

  • RE: SSIS, SSMS packages - need advice

    Adding to my confusion is the fact that changing the package in VS and importing it to SSMS/SSIS does not seem to guarantee the correct version will execute with SQL...

  • RE: Date handling is SSIS export to flat file

    I'm still not sure why this is happening (other dates in the table are being extracted without any problem), however I'll outline here what I did to fix it in...

  • RE: Bogging Down in the Minutia of Minutes

    I live in a dead zone: last year I drove 2 hours to El Paso for a SQL Saturday, in September I drove 600 miles to Denver for theirs. I'm...

  • RE: Bogging Down in the Minutia of Minutes

    I really appreciate all the work that presenters put into their presentations. I hope that someday I live somewhere where I can take advantage of events like SQL Saturday, etc....

  • RE: view creation using xml column on linked/distributed server

    Thank You Mike, that was it!

    The other have told you how to parse it. That's good because I just want to rant a bit and I know none of it...

  • RE: view creation using xml column on linked/distributed server

    I have found that this XML.Value code will get me the first 4 of the 6 pieces of data I need:

    DECLARE @x xml

    SET @x = '<datetime1>2014-08-14T04:00:00</datetime1><float1>2.000000000000000e+000</float1><float2>4.190000000000000e+002</float2><float3>1.600000000000000e+001</float3><float4>8.110000000000000e+002</float4><sql_variant1 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sqltypes="http://schemas.microsoft.com/sqlserver/2004/sqltypes" xsi:type="sqltypes:float">1.800000000000000e+001</sql_variant1><sql_variant2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"...

  • RE: Teambuilding

    For about 10 years earlier in my career, I worked for a consulting company in the Philadelphia area. We had close to 100 staff members, very few of whom knew...

  • RE: only show the duplicated records

    SELECT DISTINCT B.BF_ORGN_CD, B.LEV5, A.BF_ACTY_CD

    FROM BF_ORGN A

    INNER JOIN BF_ORGN_CNSL_TBL B

    ON A.CD=B.BF_ORGN_CD

    WHERE A.BF_ACTY_CD IS NOT NULL

    ORDER BY B.BF_ORGN_CD,A.BF_ACTY_CD

    I have used the window function ROW_NUMBER...

  • RE: Training Computer Scientists

    That's a reasonable question, but it might be instructive to pharse it a little differently: If you are looking to be a programmer, do you need education or do you...

  • RE: SQL Agent Job cannot connect to database on linked server

    The problem was resolved. This database is on a DR server, which was the only one that had not been restarted. Until now. Data transfers were halted, DR...

  • RE: SQL Agent Job cannot connect to database on linked server

    The remote login = the job owner of both jobs.

  • RE: SQL Agent Job cannot connect to database on linked server

    Both queries ran?!

    Yes, I can look at error logs. One error I see is Logon Error:18456 Severity:14 State:11.

    When I queried sys.dm_os_ring_buffers I see 0x6FD and 0x139F. I understand the...

  • RE: Email In The Bathroom: Not A Universal Good

    Part Time. I returned to the world of IT after a very long hiatus. Working part time during whatever hours I see fit has allowed me to balance work and...

  • RE: Filtered Indexes

    Thanks!

  • RE: Filtered Indexes

    Stewart "Arturius" Campbell (4/22/2015)


    Good question, thanks Mark

    alicesql (4/22/2015)


    I need some help understanding this. When a table is created, the structure is defined. But no data exists in the table until...

Viewing 15 posts - 31 through 45 (of 66 total)