Forum Replies Created

Viewing 15 posts - 7,306 through 7,320 (of 13,876 total)

  • RE: CONCAT

    CONCAT( edit.ruleid, qr.description , 'Edit Code' )

    You know about the perils of the (NOLOCK) hint, right?

  • RE: Get distinct records for paging when joining tables

    May I ask why you are converting Row_Number() to an INT everywhere?

  • RE: Help required in query.

    MadAdmin (4/7/2016)


    amitsingh308 (4/7/2016)


    Create table Script is as under:

    Create table OrdersDetails(OrderNo varchar(30),ItemNo Varchar(20),ItemName Varchar(50))

    insert script is as under:

    Insert into OrdersDetails (OrderNo,ItemNo,ItemName) Values('122314','1','sdfasfasd123')

    Now I want to change sequence number for order...

  • RE: CDC enabled database - Use Backup copy for Warehouse initial/incremental load

    SQL!$@w$0ME (4/7/2016)


    Hello guys,

    We are planning to enable CDC for one of our databases.

    Can we restore a copy on a different server (WITH KEEP_CDC option) and run the initial/incremental load...

  • RE: Passing parameters into config file

    Unticking the 'Sensitive' check box does not reveal the password, in case you were wondering.

  • RE: Passing parameters into config file

    SQLTougherGuy (4/6/2016)


    Hi Phil,

    If you are using integrated security, what security issues concern you?

    I guess my question should be... "What types of security issues will I have to concern myself with...

  • RE: Passing parameters into config file

    SQLTougherGuy (4/6/2016)


    Hello all,

    I am going to try and explain what I am looking to do here, so please bear with me :-).

    I have several SSIS packages that run off of...

  • RE: Help required in query.

    amitsingh308 (4/6/2016)


    Hello Everyone,

    I have a transactional table which contains following columns

    OrderNo. ItemNo. ItemName

    But there is an issue I need to rearrange the item number if order number...

  • RE: Are the posted questions getting worse?

    Jeff Moden (4/6/2016)


    Phil Parkin (4/6/2016)


    Lynn Pettis (4/5/2016)


    And now the attitude arrives.

    Check out the most recent 'I am proficient ...' comment. I nearly regurgitated my breakfast cereal.

    Link? I'd just like...

  • RE: Adding an Identity column as Primary Key

    IF OBJECT_ID('tempdb..#a','U') IS NOT NULL

    DROP TABLE #a;

    CREATE TABLE #a (col1 sysname);

    INSERT #a

    (

    ...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (4/5/2016)


    And now the attitude arrives.

    Check out the most recent 'I am proficient ...' comment. I nearly regurgitated my breakfast cereal.

  • RE: FTP job taking longer

    dallas13 (4/5/2016)


    Thanks but is there any command to find upload\download speed somehow?

    I am assuming that your FTP is running over the Internet. Try running this[/url] test, from both servers. Should...

  • RE: FTP job taking longer

    dallas13 (4/5/2016)


    Hello,

    So we have 1 server in east coast and other in TX rackspace.

    We have around 2 GB zipped db backup sitting in TX.

    I have FTP job running through SSIS...

  • RE: Error converting data type varchar to numeric

    sks_989 (4/5/2016)


    Thanks everyone input i was able to do from creating function

    CREATE FUNCTION SplitString

    (

    @Input NVARCHAR(MAX),

    ...

  • RE: Another SSDT-BI topic

    Jon.Morisi (4/5/2016)


    So a Visual Studio 2015 license / full install is required to do SSIS package development in SQL 2014+

    ...correct?

    The link for Microsoft SQL Server Data Tools - Business Intelligence...

Viewing 15 posts - 7,306 through 7,320 (of 13,876 total)