Search results for query: *

  1. S

    Question Import large text file every day

    Thank you all for the clarifications. I now see how to use that merge ability and understand the purpose of the forums. Was a big help!
  2. S

    Text Animation

    Under the Timer_Tick event handler: Me.Title = String.Format(" {0}", Me.Title) This would add a space to the front every time the Timer_Tick event handler hit. Set the Interval to whatever you want for the desired effect. You could even do this if you wanted it to start over again. Const...
  3. S

    Question Import large text file every day

    Sorry, I thought the Merge was something inside of VB.NET. By moving me here, I am to assume it's a SQL only thing. Haha
  4. S

    Populate Dropdown list

    I would first create a stored procedure that pulls the data how you want it. "SELECT [fieldnames] FROM Budget WHERE ISACTIVE = 1". then you can create a SqlDataSource property on your aspx page like this: <asp:SqlDataSource ID="SqlDataSource1" runat="server"...
  5. S

    Question Import large text file every day

    I have a requirement that I import a fairly large text file (~1 mil records with about 15 columns) every day. I am currently using a Data Table to set it up and then use a Truncate and then Bulk Copy, but I am trying to improve upon the process to make it run faster. I am running SQL 2008 and...
Back
Top