Forum Replies Created

Viewing 15 posts - 4,741 through 4,755 (of 5,685 total)

  • RE: Float column used as a date. Contains negative number

    That's hashed, encrypted, or proprietary... and rather wild. FLOAT?!

    Any chance you can share the name of the software?

  • RE: Are the posted questions getting worse?

    Anyone with some SSIS/flatfile export experience help me out at this thread, please?

    http://www.sqlservercentral.com/Forums/Topic1030096-148-1.aspx

    sjimmo and I have been going back and forth about workarounds but we're apparently missing the main question,...

  • RE: Compoud MAX and COUNT

    Ah, that helped cure my confusion. I apparently just can't read. I was, for some reason, trying to get multiple events out of the structure. :hehe:

    What you've...

  • RE: Flat File not outputting Row Delimiters

    sjimmo (12/3/2010)


    Convert the file before SSIS uses it.

    I'm sorry, but apparently I'm not being clear enough here. There is no flatfile before SSIS uses it. SSIS creates it.

    I...

  • RE: Compoud MAX and COUNT

    I goofed off with this but the data layout seems a little strange to me, it may just be some internal assumptions I'm making about the data.

    Any chance you can...

  • RE: Flat File not outputting Row Delimiters

    sjimmo (12/3/2010)


    Craig, This is a common issue when dealing with files from Unix/OS2 systems. The end of record mark for those systems is a LF and not CR/LF as a...

  • RE: Flat File not outputting Row Delimiters

    I found *a* solution, but it's a bad one from my perspective. I've created a computed column with "/r/n" in the expression and linked that into the final result...

  • RE: SSIS HELP with SQLtask

    If I understood this correctly, you're basically just starting to use SSIS at all, and you need a beginner's guide.

    Create some sources at the bottom, connecting to the different database....

  • RE: Add to query to show if populated

    Sorry, got distracted:

    SELECT t.name AS table_name,

    SCHEMA_NAME(schema_id) AS schema_name,

    c.name AS column_name

    FROM sys.tables AS t

    INNER JOIN sys.columns c ON t.OBJECT_ID = c.OBJECT_ID

    JOIN sysindexes AS i ON i.id = t.object_id

    WHERE c.name LIKE '%n%'

    AND...

  • RE: Add to query to show if populated

    join to sysindexes on indexID IN ( 0, 1) and check the row column.

  • RE: Pulling out rows in specific groups

    There's no quick and clean way.

    One method is to do a select into a temp table for just the sorted columns with an IDENTITY() field, to find your...

  • RE: Service Broker

    Tara-1044200 (12/2/2010)


    so can i assume for SURE that someone else who has access has stopped it, if so how can i prove that?

    fyi..4 people has admin access on this box.

    Without...

  • RE: Linked Server: using Kerberos Through a Firewall Over a WAN

    nzrdb6 (12/2/2010)


    Help! I've reached the limits of my knowledge as a humble DBA. Here's the problem -

    there is a firewall between London and Berlin. What must I ask my...

  • RE: Remove the first character of a string

    Phil Parkin (12/2/2010)


    Craig Farrell (12/2/2010)


    LutzM (12/2/2010)


    In that case, either an IIF statement or REGEX should help. (Google regex or IIF in ssis for details.)

    You'd basically use a script component after...

  • RE: Service Broker

    Tara-1044200 (12/2/2010)


    I also see this message in the error logs after 1 sec of the above message

    SQL Server is terminating in response to a 'stop' request from Service Control...

Viewing 15 posts - 4,741 through 4,755 (of 5,685 total)