Forum Replies Created

Viewing 15 posts - 7,576 through 7,590 (of 9,643 total)

  • RE: Linked Server Connection Problem

    Mine will likely be slightly different as the only Foxpro data I have access to is in free tables so that's all I know. Here is the linked server...

  • RE: ssis import taking forever

    I meant what you get when you open the OLEDB Destination for edit, but this actually gave me what I was interested in, since you are outputting errors to a...

  • RE: Problem With Excluding Records

    Here is something that works on a simple one table problem:

    [font="Courier New"]DECLARE @cities TABLE(zipcode CHAR(5), city VARCHAR(25), TYPE CHAR(1))

    INSERT INTO @cities

       SELECT

           '85739',        'TUCSON',        'C'

       UNION ALL

       SELECT

           '85739',        'TUCSON',        'N'

       UNION ALL

      ...

  • RE: Linked Server Connection Problem

    Try changing the login option to "Be made using the login's current security context". I tried this using a basic SQL login that is only in the public server...

  • RE: ssis import taking forever

    What are the properties of the oledb destination?

  • RE: ssis import taking forever

    Could you post the steps you are using to import the data?

    Are there any other processes accessing the table that the data is being imported into?

  • RE: DBCC CheckDB

    Wish I could understand exactly what it means too. I'm glad the update worked. I thought it might because it "changes" the values. A good blog on...

  • RE: SQL in Latex

    Thanks Gail. I guess that's my one new thing learned for the day, so I can go home now.

  • RE: Capturing error message in Exec()

    You need to wrap this:

    bcp "SELECT getdate()" queryout "E:\BULKUPLOAD.dat" -c -U sa -P password

    in a pair of single quotes like this:

    ''bcp "SELECT getdate()" queryout "E:\BULKUPLOAD.dat" -c -U sa -P password''

    Remember...

  • RE: Get the Latest records fro each month

    Here's my first pass in T-SQL:

    [font="Courier New"]DECLARE @table TABLE(DAY INT, Week INT, MONTH INT, Customer CHAR(3), PurchaseCount INT)

    INSERT INTO @table

       SELECT

           1,      1,       1,        'ABC',           10

       UNION ALL

       SELECT

           7,      2,       1,        'DEF',            12

       UNION...

  • RE: i want the code for the following

    I'm assuming you already know how to get the file name into a variable and how to process it.

    After processing the file use a File System Task with an operation...

  • RE: Fixed width text file and SSIS

    You should be able to this pretty simply in SSIS, but without any example data and information about the fixed with sizes it is hard to give you any kind...

  • RE: SQL in Latex

    What is latex? I know it is a type of rubber, but I am assuming it means something else in this context.

  • RE: DB Install Script

    Is the SQL Server setup to use Mixed Authentication?

    By default only members of the sysadmin role would have rights within database when you create and then any logins you add...

  • RE: Call Value from Another Cell

    I think you can use the ReportItems Collection. So the expression, using your example below, would be:

    ReportItems!TextBox1.Value/ReportItems!TextBox2.Value

Viewing 15 posts - 7,576 through 7,590 (of 9,643 total)