Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Programmer99

  1. Programmer99

    import from access

    I tried just connecting to the flat file and had some issues I could not get around. The main issue I had was that I could not get the formatting to recognize the carriage return lines to every line gets thrown off by one from the previous line. I changed all the options to CR/LF, LF, CR and...
  2. Programmer99

    import from access

    I have a linked table to a text file in an access database and am trying to import that linked table into SQL 2005 database. The problem I am having is when I go through the SSIS import designer and choose the acccess database source file, those linked tables do not show up nor do any queries...
  3. Programmer99

    Integration services importing flat file

    I tried all of those options and it still did not make a difference. I should be able just to switch that option instead of having to reconnect to the file and reestablish that it is a LF correct?
  4. Programmer99

    Integration services importing flat file

    I need to import a flat file into a SQL 2005 database table. The text file has fixed lengths so I defined all these lengths and thought I was good to go. When I previewed it, I noticed the file has carriage return lines so it was messing all the formatting up. My question is how to get around...
  5. Programmer99

    Indentify Distinct records issue

    do you know the code I would use to connect to the table to create a recordset. I have experience in VB but am not sure how to link to an Access table in the module. Thanks.
  6. Programmer99

    Access table issue distinct

    I have a table that contains many SSNs and some of them are in the table more than once. What I'm trying to do is create a new field and populate the field to a value of "1" for each unique SSN. For instance for the rows that have multiple SSNs, I want to value the first new field to 1 and the...
  7. Programmer99

    Indentify Distinct records issue

    I have a table that contains many SSNs and some of them are in the table more than once. What I'm trying to do is create a new field and populate the field to a value of "1" for each unique SSN. For instance for the rows that have multiple SSNs, I want to value the first new field to 1 and the...
  8. Programmer99

    Stored Procedure calling UDF

    Is it possible to have a Stored Procedure call a UDF?
  9. Programmer99

    Issue setting flag to Y or N based on outcome

    I'm thinking I'll have to do some sort of Left Outer Join like... Select LastName, FirstName, HasDriversLicense From Borrower b Left Outer Join DriversLicense dl on b.BorrowerTrID = dl.BorrowerTrID I just don't know how to display a Y if they have an entry in the DriversLicense table or a N...
  10. Programmer99

    Issue setting flag to Y or N based on outcome

    The HasDriversLicenseFlag is a column, it is just the Column name I want to display for the user.
  11. Programmer99

    Issue setting flag to Y or N based on outcome

    I have a query that is returning information from a table like... Select LastName, FirstName, HasDriversLicenseFlag from Borrower I need to look in the DriversLicense Table to determine if the borrower has one or not. If they do, display "Y" else Display "N" for the HasDriversLicenseFlag...
  12. Programmer99

    Format Date Field

    Very nice! If I need to format other fields such as a Phone Nbr, would I use the {0: to handle those Nulls as well?
  13. Programmer99

    Format Date Field

    I need to do the same thing and what you describe works great, except if the value being returned is NULL. How do I get around this?
  14. Programmer99

    CustomValidator not stopping button action

    I would still like to use the CustomValidator because I use many other validators such as RegularExpressionValidator and RequiredFieldValidator. They work perfect so I would like to figure out what is wrong with my CustomValidator.
  15. Programmer99

    CustomValidator not stopping button action

    <asp:Button id="btnLoanCertProfileAdd" onclick="AddLoanCertProfile" runat="server" Width="35px" <asp:CustomValidator id="ctvNewProfileName" CssClass="ErrorMsg" runat="server" ControlToValidate="txtLoanCertProfileName" Display="Dynamic" ErrorMessage="Profile Already...

Part and Inventory Search

Back
Top