Forum Replies Created

Viewing 15 posts - 2,206 through 2,220 (of 5,393 total)

  • RE: Is There Any Reason I Should NOT enable READ_COMMITTED_SNAPSHOT?

    Ninja's_RGR'us (12/30/2011)


    David Moutray (12/30/2011)


    Dude, you should write an article (or maybe a series of articles).

    Already has done so. It's called 10K posts on ssc.com 😀

    This means you already have...

    -- Gianluca Sartori

  • RE: MSSQL Server 2008 R2 not being connected via ip address.

    When you use an IP address instead of the server name, SQLNCLI assumes TCP/IP is enabled.

    Is there any particular reason why you're using Named Pipes and not TCP/IP?

    -- Gianluca Sartori

  • RE: help in logic

    PaulB-TheOneAndOnly (12/29/2011)


    pandeesh (12/29/2011)


    Any other suggestions welcome...

    How about using coalesce?

    create table #test(id decimal);

    insert into #test values(1);

    insert into #test values(2);

    insert into #test values(3);

    insert into #test values(4);

    insert into #test values(5);

    insert into #test values(6);

    insert...

    -- Gianluca Sartori

  • RE: sql query

    I'm officially confused. :ermm:

    Time for a break.

    -- Gianluca Sartori

  • RE: OLE Automation turning off by it's own

    You could set up a policy and raise an alert when the configuration changes. You can even prevent the change at all.

    -- Gianluca Sartori

  • RE: sql query

    Duplicate post.

    Replies here please:

    http://www.sqlservercentral.com/Forums/FindPost1228255.aspx

    -- Gianluca Sartori

  • RE: sql query needed

    DECLARE @abc TABLE

    (

    SerialNumber varchar (50)

    )

    insert into @abc (SerialNumber)values ('12345 0047225P1')

    insert into @abc (SerialNumber)values ('00011 0055500ABC2')

    SELECT

    SUBSTRING(SerialNumber, PATINDEX('% %', SerialNumber) + 1, PATINDEX('%[^0-9][0-9]', SerialNumber) - PATINDEX('% %', SerialNumber) -...

    -- Gianluca Sartori

  • RE: sql query needed

    mario.balatellii (12/30/2011)


    So if i knew the logic my self i would have done it .

    I guess you will have to ask that to somebody who knows the business logic.

    I...

    -- Gianluca Sartori

  • RE: configure the backup on a Network location where user name and password is required

    forsqlserver (12/30/2011)


    Yes may be I have not discussed.

    That would be the best way. Talk to your admins, I'm sure you can set up something sensible.

    After completion how can I disconnect...

    -- Gianluca Sartori

  • RE: sql query needed

    mario.balatellii (12/30/2011)


    create table abc

    (

    SerialNumber varchar (50)

    )

    insert into abc (SerialNumber)values ('12345 0047225P1')

    insert into abc (SerialNumber)values ('00011 0055500ABC')

    I am expecting a table with once column name account number and the result like...

    -- Gianluca Sartori

  • RE: configure the backup on a Network location where user name and password is required

    forsqlserver (12/30/2011)


    How can user_id and password be provide without manual intervention.

    NET USE X: \\servername\sharename password /USER:domainname\username

    -- Gianluca Sartori

  • RE: AES Encryption in 2008R2

    encrypted by MSSQL 2008R2.

    You mean TDE? No way. SQL Server handles that for you.

    Any other kind of encryption is managed by the applications. Find the app that encryped the data...

    -- Gianluca Sartori

  • RE: sql query needed

    You're not telling much about your data.

    Can you post the table script, some sample data and the expected results based on the sample data?

    Also, what makes P the letter in...

    -- Gianluca Sartori

  • RE: configure the backup on a Network location where user name and password is required

    You would have to issue a NET USE command for the SQL Server service account.

    Ugly and unreliable. Are you sure you don't have other options?

    -- Gianluca Sartori

  • RE: Is There Any Reason I Should NOT enable READ_COMMITTED_SNAPSHOT?

    Michael Valentine Jones (12/29/2011)


    Gianluca Sartori (12/28/2011)


    NOLOCK? :sick:

    With RCS enabled writers don't block readers. Is this the kind of concurrency issue you're trying to address?

    As far as the dangers is concerned,...

    -- Gianluca Sartori

Viewing 15 posts - 2,206 through 2,220 (of 5,393 total)