Forum Replies Created

Viewing 15 posts - 556 through 570 (of 1,170 total)

  • RE: Heaps rebuild

    Sean Pearce (5/21/2014)


    The question is not quite right. Fragmentation can be removed by running this because the table is rebuilt.

    Your claim that Paul says you can't remove fragmentation is wrong....

  • RE: Running Out Of Foreign Keys

    Good point to share regarding this QotD.

    Biggest tables I've been working on are some with about 30-50 columns, 10-20 FKs, 150-400 million rows and sizes between 100-200 GB.

    Let's see some...

  • RE: Master thesis on Business Intelligence

    Another one from me,

    Wish you success with your work further...

    Regards,

    Igor

  • RE: best practices for storing ssn?

    Hi

    Swaping out real SSN with fakes will possibly cause other issues.

    I used to do the same thing with scrambling the names, addresses and DOBs

    Encryption of SSNs is a good option...

  • RE: WHERE Clause comparing more than 2 columns

    Koen Verbeeck (5/16/2014)


    How about this:

    WHERE NOT((T1.Branch = T2.Branch)

    AND (T1.Branch = T3.Branch)

    AND (T1.Branch = T4.Branch)

    )

    Following the De Morgan lows, this is practically the same as

    WHERE (T1.Branch != T2.Branch) OR (T1.Branch !=...

  • RE: TSQL and OPENQUERY

    Hi

    In your select

    SELECT *

    FROM OPENQUERY(ADSI,'SELECT cn,SamAccountName, ADsPath FROM ' 'LDAP://DC=DomainName,DC=com' ' WHERE bjectCategory=' 'person' ' AND objectClass=' 'user' ' ')

    why do you have ' 'LDAP://DC=DomainName,DC=com' ' ? You should have...

  • RE: Getting the grid back

    CTRL+T - for text

    CTRL+D - for grid

    in my ssms 2008r2, 2012 and 2014.

  • RE: SQL Server In memory OLTP

    Grant Fritchey (4/24/2014)


    One of the best resources I've found on getting started with the in-memory databases. Tons of links to good articles.

    Thanks for sharing

    BR

    Igor

  • RE: Datatypes In Your Mind

    Koen Verbeeck (5/5/2014)


    Misread the question and thought the data type was supposed to store negatives as well...

    Need more caffeine.

    Misread too, considering those that can store store... :smooooth:

  • RE: The Results Tab

    Good one, had to check it.

    Thanks

    Igor

  • RE: how to setup SQL instance

    tlou.mone (4/26/2014)


    hello everyone

    can you please help.I have downloaded SQL Server 2008(im a novice). i wnt to use management studio but cannot connect to an instance.Question: Can u connect to an...

  • RE: Double Keys

    Thanks a lot, Steve.

    Learned something new.

    Regards,

    Igor

  • RE: Memory-Optimized Table checkpoint

    Thanks for this new-feature question.

    Regards,

    Igor

  • RE: SQL Server port

    Just tested this yesterday 🙂

    Good question!

    Thanks

    Igor

  • RE: Buffer Pool Extensions

    This is a great new feature in Sql Server 2014

    Example (http://msdn.microsoft.com/en-us/library/ee210585(v=sql.120).aspx)

    ALTER SERVER CONFIGURATION

    SET BUFFER POOL EXTENSION ON

    (FILENAME = 'F:\SSDCACHE\Example.BPE', SIZE = 50 GB);

    Thanks

    Igor

Viewing 15 posts - 556 through 570 (of 1,170 total)