Viewing 15 posts - 556 through 570 (of 1,170 total)
Sean Pearce (5/21/2014)
Your claim that Paul says you can't remove fragmentation is wrong....
May 21, 2014 at 7:36 am
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...
May 20, 2014 at 1:37 am
Another one from me,
Wish you success with your work further...
Regards,
Igor
May 18, 2014 at 3:40 pm
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...
May 18, 2014 at 3:07 pm
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 !=...
May 16, 2014 at 2:51 am
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...
May 16, 2014 at 2:36 am
CTRL+T - for text
CTRL+D - for grid
in my ssms 2008r2, 2012 and 2014.
May 16, 2014 at 12:49 am
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
May 13, 2014 at 2:56 pm
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:
May 7, 2014 at 12:02 pm
tlou.mone (4/26/2014)
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...
April 27, 2014 at 3:04 am
Thanks for this new-feature question.
Regards,
Igor
April 27, 2014 at 2:30 am
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
April 18, 2014 at 3:45 am
Viewing 15 posts - 556 through 570 (of 1,170 total)