Forum Replies Created

Viewing 15 posts - 1,711 through 1,725 (of 13,469 total)

  • RE: Parsing large varbinary fields

    ok, using pure string manipulation, can you ASSUME, the value you want is between a tab and the first left parenthesis?

    someone will pretty this up with a cross apply, which...

  • RE: Need a query to looking for cases of period difference in Legal names

    something like this seems to find matches:

    ;WITH MySampleData([ID],[CompanyName])

    AS

    (

    SELECT '1','All Season Equipment Ltd.' UNION ALL

    SELECT '2','All Season Equipment Ltd' UNION ALL

    SELECT '3','West End Housing, Inc.' UNION ALL

    SELECT '4','West End Housing, Inc'...

  • RE: Encrypt SQL server 2014 instance

    When you say "encryption" , do you mean Transparent Data Encryption?

    or row level encryption, which requires each protected column to have data type changes, and encryption and decryption routines...

  • RE: Create DB, Add Data Only

    when you copy pieces, it's so easy to overlook something that was required.

    there's always one mor ething that got overlooked, and turns into a constant trickle of research.

    i lean...

  • RE: Restore Sequence

    info.sqldbamail (6/8/2015)


    Thank You

    I get your point : 1 FULL Backup + Most Recent Diff Backup + All Cumulative log backups since Last full backup is this correct.

    No, that's not right.

    To...

  • RE: Restore Sequence

    log backups are cumulative, and are not affected by differential, so you cannot go from full + diffs + one last log. it's an either log-or-differential process.

    full backup, plus any...

  • RE: json into sql server

    JeeTee (11/6/2014)


    Depending on what's in between ElasticSearch and SQL, a rudimentary .Net application can quite easily de-serialize the JSON before putting it into SQL.

    exactly how i do it myself.

    Also, there's...

  • RE: incement by 5 starting at 5

    I think row_number is they way to go here; then you cna just multiply it by five.

    WITH CTE as

    (

    SELECT row_number() over(order by MyPrimarykey) * 5 as myColumn from table

    )

    SELECT...

  • RE: please help us to improve this query performance level without affecting the existing functionality

    mohanaprabhu.v (6/4/2015)


    SELECT tblInvoice.*, tblCustomer.FirstName + SPACE(1) +

    ...

  • RE: Access SQL instance without sa password

    lduvall (6/3/2015)


    I've reached out to the "wing" of the company that might tell me if they have disabled my predecessor's account & could temporarily re-instate it so that I could...

  • RE: Access SQL instance without sa password

    same thing then, right?

    if he is a local admin on the PC in question, he can run the script and take over the SQL instance(s).

    if he had 3 instances(ie...

  • RE: Access SQL instance without sa password

    if you can rdp or login directly to the server, then you could stop and start the service in sinlge user mode, regardless of whether you are a sysadmin on...

  • RE: Managing Hight Qty of SQL Servers By Client

    are you familiar with SSMS's Registered Servers or Central Management servers?

    it does exactly what you seem to be asking, and it's built in.

    once you add them in a hierarchy, you...

  • RE: Syntax to convert from ounces to pounds in format of 6 lb 3 oz

    help us help you!

    CREATE TABLE and sample data get you help fast!

    i put this example together that might help you visualize it.

    i got the formula for ounces to grams from...

  • RE: Sql server Named Instance

    Joie Andrew (6/3/2015)


    In SQL Server Management Studio view "Registered Servers". Create a folder for your 10 instances and register each server instance. Once all 10 are added right-click on the...

Viewing 15 posts - 1,711 through 1,725 (of 13,469 total)