Viewing 15 posts - 136 through 150 (of 253 total)
Change the column name to a column name present in one of the tables referenced in the query.
January 17, 2016 at 9:44 pm
Using t-sql filter the month
SELECT *
FROM tableName
WHERE month(date2) = month(getdate())
January 14, 2016 at 10:06 pm
Use Truncate table deletes all the rows in that table
TRUNCATE TABLE LargeTable
GO
January 13, 2016 at 10:31 pm
SELECT CONVERT(nvarchar(6), GETDATE(), 112)
January 13, 2016 at 10:18 pm
use namespace System.Net.WebClient to make the Http request with the help of Script Task in SSIS
January 13, 2016 at 10:09 pm
to stop some users from deleting records from a table
DENY DELETE ON OBJECT::dbo.table_to_deny TO restricted_user;
January 13, 2016 at 9:28 pm
Check out the following link may be this will help you to out: http://www.brighthub.com/computing/windows-platform/articles/25996.aspx
January 12, 2016 at 10:39 pm
Make sure that you have entered the correct server name, and that you can resolve the name of the server from the client. To check TCP/IP name resolution, use ping...
January 12, 2016 at 10:15 pm
Both are stable but Visual Studio 2013 has many features like ASP.NET, IDE, MSBuild, LightSwitch, Code lense, Browser link
January 12, 2016 at 10:00 pm
Disable UAC, firewall off and run SQL Server Management Studio as administrator
or check this link: http://www.sqlserverlogexplorer.com/fix-microsoft-sql-server-login-failed-error-18456/
January 11, 2016 at 10:59 pm
Check out the following link may be this will help you: https://technet.microsoft.com/en-us/library/aa260645(v=sql.80).aspx
January 11, 2016 at 10:27 pm
in simple words heap is a table without a clustered index to know more about heap you can take the help of this link:
January 11, 2016 at 10:14 pm
Yes, because litespeed is a third party component and use Microsoft VDI interface to perform tasks, so you need sysadmin permissions for taking backup using litespeed
January 11, 2016 at 9:31 pm
Try setting up an ODBC DSN for Interbase. Then in DTS / SSIS use the Other (ODBC Data Source) and the DSN.
January 11, 2016 at 4:22 am
You can only master SQL by practicing. Check out the following links learn more about SQL in depth
https://msdn.microsoft.com/en-us/sqlserver/bb671058.aspx
January 8, 2016 at 10:46 pm
Viewing 15 posts - 136 through 150 (of 253 total)