Forum Replies Created

Viewing 15 posts - 1,066 through 1,080 (of 1,241 total)

  • RE: Performce SP

    Not enough information here, but I can guess that this query would benefit from a filter by date on table B. (At the least).

    ----------------------------------------------------

  • RE: SSIS Login Error

    I would think the agent credentials are used and not necessarily overridden by something else on the SSIS package.

    ----------------------------------------------------

  • RE: How to delete any backup files based on CURRENT day in a daily schedule.

    You may need to specify the extension of the file in the file name. Also it appears you are recreating the job everyday, If the job with that name already...

    ----------------------------------------------------

  • RE: export to flat file is failed

    Wondering if this got resolved. If so can you share how? thanks.

    ----------------------------------------------------

  • RE: How to handle historical data change in SSAS

    How you define your partition is partly if not fully influenced by business logic. If a sale has a 30 day return period then you can create each partition in...

    ----------------------------------------------------

  • RE: Creating dimension from Fact table.

    Create the dimension tables. What if you want to know what stores generated no sales in some particular time frame?

    ----------------------------------------------------

  • RE: What Do You Call This Relationship ?

    With the ODD numbers, how is 7,5,3 related. Did you miss 7 is related to five?

    thanks

    ----------------------------------------------------

  • RE: How to insert new record for a user having multiple records by performing lookup?

    So you are adding back records to the student table that you think should be there. Could it be the students table was archived somewhere else and the history table...

    ----------------------------------------------------

  • RE: How to Compare Data between to servers based in Id's

    If your goal is just to keep the two tables in sync you could just use transactional replication from the source to the subscriber (whichever server is which). if they...

    ----------------------------------------------------

  • RE: How to Compare Data between to servers based in Id's

    You could add a checksum column on to apply to the columns wher you think the changes may occur. This will identify your row Id's that are out of sync....

    ----------------------------------------------------

  • RE: expression output

    Check the default language of the login accessing the data for your report. British English and English will interpret '08-01-2013' in different ways.

    ----------------------------------------------------

  • RE: When DB restored to different server will database mapping and permissions stay?

    Where you trying to move the data using a linked server connection? You can map the SQL logins in this way using ( I don't mean the Windows logins).

    ----------------------------------------------------

  • RE: compare varchar dates

    I, personally, would change datatype in the table.

    Use a bit of caution, this may affect other views and stored procedures that use this column. They may, for instance, be...

    ----------------------------------------------------

  • RE: compare varchar dates

    If working with a large data set, the convert function in the where clause will slow things down as compared to having a datetime column. It may be beneficial to...

    ----------------------------------------------------

  • RE: Convert Varchar to Decimal

    In your query you are casting as decimal(18,2). Are your numbers always going to be whole numbers?

    The following example

    select PATINDEX('%[^0-9]%', '1234234.20')

    does not return zero.

    ----------------------------------------------------

Viewing 15 posts - 1,066 through 1,080 (of 1,241 total)