Viewing 15 posts - 121 through 135 (of 253 total)
Check out this article hope this will help you out: https://support.microsoft.com/en-us/kb/2688946
February 5, 2016 at 9:37 pm
To fix SQL Server Login Failed Error 18456 you can take the help of this link: http://www.sqlserverlogexplorer.com/fix-microsoft-sql-server-login-failed-error-18456/
February 4, 2016 at 10:13 pm
GRANT CREATE TABLE TO UserName
GRANT ALTER ON SCHEMA::AllowedSchema TO UserName
DENY ALTER ON SCHEMA::RestrictedSchema TO UserName
February 3, 2016 at 9:54 pm
Check out the following article maybe this will help you out: http://social.technet.microsoft.com/wiki/contents/articles/24169.sql-server-searching-all-columns-in-a-table-for-a-string.aspx
February 2, 2016 at 9:44 pm
You can also take the help of this link to change the default database location for server:
http://sqlandme.com/2013/03/18/sql-server-changing-default-database-location-for-server/
February 1, 2016 at 9:34 pm
Mount points allow you to mount multiple physical devices under one drive letter, where they look similar to directories. Using mount points is really straightforward.Check out the following article to...
January 29, 2016 at 9:48 pm
Take a look at this article, hope this will help you out:
https://www.mssqltips.com/sqlservertip/2609/checking-sql-services-status--an-evolution-part-1/[/url]
January 27, 2016 at 10:08 pm
Check out this link hope this will help you out: https://support.microsoft.com/en-us/kb/2714785
January 24, 2016 at 9:50 pm
Exec sys.sp_MSforeachtable ' sp_spaceused "?" '
January 21, 2016 at 10:53 pm
Check out the following link hope this will help you: https://www.mssqltips.com/sqlservertip/3690/identify-sql-server-database-growth-rates/
January 20, 2016 at 10:29 pm
run the following command in the database with the login problem, this commands re-map the user's security identifier to match the sql server login's security identifier
ALTER USER...
January 19, 2016 at 10:49 pm
Ngen.exe causes the SQL Server setup installation process to halt, until shut down
Or it may be an antivirus issue: https://support.avg.com/answers?id=906b00000008nRnAAI
January 18, 2016 at 10:21 pm
You can take the help of this link: http://sqlserverzest.com/2013/07/31/sql-server-how-to-download-and-install-adventureworks-sample-database/
January 18, 2016 at 10:01 pm
SELECT column_name(s)
FROM table1
RIGHT OUTER JOIN table2
ON table1.column_name=table2.column_name;
January 17, 2016 at 10:01 pm
Viewing 15 posts - 121 through 135 (of 253 total)