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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. FlaBusInt

    Newbie: Transfer table recors from source database to target database

    You would need to deploy the SSIS package to the appropriate server. Then you could schedule a job through Management Studio and set the Type as SQL Server Integration Services Package.
  2. FlaBusInt

    Newbie: Transfer table recors from source database to target database

    If I understand your question correctly, you could do it either way. Do you have to do any transformations or cleansing of the data as you shift it from one db to the other? If so, SSIS might be your better choice because it is usually faster to do those transforms in the data stream...
  3. FlaBusInt

    Access to Reporting Services Metadata

    Yes, and I do use those to look at report usage and other metrics. However, I don't see anywhere that I can load and pull free-form data that we would enter for additional info on individual reports, like recording the user(s) who can authorize changes to the report. I guess what I'm looking...
  4. FlaBusInt

    Access to Reporting Services Metadata

    I'm trying to access and store metadata for our new Reporting Services installation, and I had a couple of questinos: 1. Is there any place in the report design to store information about the report that might then be queried. I can see where I can enter an Author and Description, but I'd like...
  5. FlaBusInt

    Using the Lookup Transform on a varchar field

    Never mind. I found the "feature" where padded varchar() strings will not match with a CacheType of Full, but will match with Partial or None. I added some Derived Column transforms to trim the columns in the two tables as I import them, and it seems to be working. I guess if it weren't for...
  6. FlaBusInt

    Using the Lookup Transform on a varchar field

    I pull data from a SQL table that has a column that can be 7 - 9 characters long which has a varchar(9) data type. I pass that column into a Lookup transform where the lookup is done against another table with a varchar(9). My problem is that the Lookup seems to be throwing an error on any...
  7. FlaBusInt

    SSAS Date Range Queries

    Try buiding your SSRS report using the Wizard. It will provide a view of your cube similar to the cube's Browser window. If you put dates in the parameter fields up top and check the Parameter check box, it will auto generate the MDX that you need.
  8. FlaBusInt

    YTD calculations when using SSAS as datasource

    I have a cube that tracks sales by sales rep. In this cube, I have dimensions for SalesRep, Product, and Region hierarchies. I also have a Time dimension that provides Fiscal Year, Fiscal Quarter, Fiscal Month, and Calendar Date; the Time dimension also has an attribute showing the first day...
  9. FlaBusInt

    OLE DB error... inserting nulls...

    How do you derive the column that has NULLS?
  10. FlaBusInt

    Exporting from SQL to Excel

    Do you use any reporting software like MS Reporting Services or Business Objects? Most reporting front-ends will allow you to schedule e-mailed reports in a variety of formats, such as Excel or PDF.
  11. FlaBusInt

    Changing values to percentages

    What's your data source? I'm thinking the easiest way would be to do the calculation in your proc or cube.
  12. FlaBusInt

    Searchable drop-down list

    One thought off the top of my head: Set up a pair of cascading parameters. The first parameter would allow the user to type three characters. The second parameter would be the query that generates your list, but it would now accept the first parameter and include a WHERE clause like: WHERE...
  13. FlaBusInt

    Simple 1 to 1 Question

    Taking SQLSister's reply one step further, it really does depend on how the data is loaded. The table containing the data loaded first needs to be your primary table; it should be FK'd to the table with data loaded after. Otherwise, you could get a key violation.
  14. FlaBusInt

    SSIS vs DTS - advise please!!!

    We are just moving from an environment where we ran all our reporting against the OLTP database (requiring virtually no ETL), to an environment where we are reporting against a dimensionally modelled data warehouse. We are using SSIS as our tool for loading the data warehouse, and my entire...
  15. FlaBusInt

    Documenting an SSIS Package

    I would love to be able to copy and print the Control Flow diagram from an SSIS pacage for presentation and to insert in some project documentation. When I do a File > Print from VS it breaks it into multiple pages; don't see any way to copy it to Word or Visio. Anyone have any ideas?
  16. FlaBusInt

    SP problem with dates

    Ooops, forgot the commas: select Month(DateAdd(mm,-6,getdate())), Month(DateAdd(mm,-5,getdate())), Month(DateAdd(mm,-4,getdate())), Month(DateAdd(mm,-3,getdate())), Month(DateAdd(mm,-2,getdate())), Month(DateAdd(mm,-1,getdate()))
  17. FlaBusInt

    SP problem with dates

    I think you want to use DateAdd instead of DateDiff: select Month(DateAdd(mm,-6,getdate())) Month(DateAdd(mm,-5,getdate())) Month(DateAdd(mm,-4,getdate())) Month(DateAdd(mm,-3,getdate())) Month(DateAdd(mm,-2,getdate())) Month(DateAdd(mm,-1,getdate())) I suppose if you want...
  18. FlaBusInt

    Joining Facts (Dimensional Modelling Question)

    OK - If I understand correctly, you have a ClaimTransaction Fact table that is FK'd to a Claim Dimension, and you have a Repair Fact table that is FK'd to a Repair Dimension and to the Claim Dimension. You have a Repair Date in the Repair Fact table that you want to include in the...
  19. FlaBusInt

    float or numeric?

    Remember - float and real are approximate data types. This means that they don't always store the exact number. For example, 12.0099 might be stored as 12.01. If you need the numbers for precise calculations, you should use numeric. Otherwise, I think float requires slightly less storage...
  20. FlaBusInt

    SSIS package moving very slow...

    Are you loading the tables in sequence, or in parallel?

Part and Inventory Search

Back
Top