Forum Replies Created

Viewing 15 posts - 8,671 through 8,685 (of 8,733 total)

  • RE: Clustered Index Scan

    GilaMonster (3/28/2014)


    Eirikur Eiriksson (3/28/2014)


    SELECT @ProductID= ProductID FROM Product WITH (NOLOCK) WHERE SalesID= '@salesId' and Product = 'Clothes '

    Apart from not being SARGable...

    All the predicates in that query are SARGable. They're...

  • RE: Clustered Index Scan

    SELECT @ProductID= ProductID FROM Product WITH (NOLOCK) WHERE SalesID= '@salesId' and Product = 'Clothes '

    Apart from not being SARGable, this query puzzles me, would you ever have a SalesID value...

  • RE: how to Create index online?

    Ranzz (5/26/2011)


    Below is the script for creating index and how can I change the script to create index onlie?

    what are benfits and disadvangates of online and offile?

    CREATE NONCLUSTERED INDEX [_dta_index_dClientCode_16_437576597__K7_K3_1]...

  • RE: how to Create index online?

    tlunsf (3/28/2014)


    Ninja's_RGR'us (5/26/2011)


    What didn't you understand in my previous post?

    What part of ONLINE = SOMETHING OTHER THAN OFF GOES HERE are you having troubles with?

    It is comments like this that...

  • RE: which way is the better for 1 million records inserting into one table

    cooljagadeesh (3/27/2014)


    which way is the better for 1 million records inserting into one table

    1) insert into destination

    select * from source

    2) BULK INSERT destination

    FROM '\\computer\source.txt';

    3) BCP

    Quick...

  • RE: Store a Value in a Variable

    sandeep.patel1 (3/27/2014)


    Hi Eirikur Eiriksson,

    I want to assing my Aggregate transformation output(Which Returns only one value like 5.50) into a Variable.

    How can i do this.

    I already created a variable in Package...

  • RE: How do I clean old data connections out of an SSIS package?

    Well, this is what I got when I tried that:

    Error1Error loading 'Weekly_FullSnapshots - Forecasts Live - xml edit.dtsx' : The server threw an exception. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT)).G:\Mhub_Operations\DATA\SSIS\Archive_Snapshots\Weekly_FullSnapshots -...

  • RE: Store a Value in a Variable

    Create a variable which has high enough scope for all the tasks you want to use the variable in. Then assign the initial value to the variable where the value...

  • RE: How do I clean old data connections out of an SSIS package?

    The way I would do this is :copy the package file, open the package in a text editor, delete everything including the tags between any instances of <DTS:ConnectionManager> and <DTS:ConnectionManager...

  • RE: Copying data from one set of tables to another

    ErikMN (3/27/2014)


    Thanks for the reply, but I think you're missing one part of my scenario or I'm not quite understanding your answer. The problem with your answer is that...

  • RE: escape single quote in a column

    One suggestion is to use derived column and the replace function inside the left function.

  • RE: STOPLIST Key Word

    kmdavisjr (3/27/2014)


    Hi Everyone. I have full server rights (OS and SQL) on the host. The screenshot is a capture of the error I am getting. Full text...

  • RE: How do I clean old data connections out of an SSIS package?

    You can query the xml package file to list all connections, look at this thread for more info;

    http://www.sqlservercentral.com/Forums/Topic1380488-21-1.aspx

  • RE: STOPLIST Key Word

    Quick question, are you using full-text search on the server?

    Edit:

    The server is pretty smart when it comes to interpreting even the strangest of user's naming :w00t:

    As an example, this...

  • RE: How do I clean old data connections out of an SSIS package?

    No "clean" function that I know of, manual labour I am afraid.

    To speed the process, use the property (F4) window, lists connections etc. of data flow and control...

Viewing 15 posts - 8,671 through 8,685 (of 8,733 total)