Viewing 15 posts - 1 through 15 (of 321 total)
You need to post full script, otherwise it is very difficult to find out the error.
October 15, 2014 at 1:29 am
You need to post full script, otherwise it is very difficult to find out the error.
October 15, 2014 at 1:29 am
Try the following syntax
declare @string varchar(max)
set @string = 'abcd'
select * from openquery
(TEST_Server, 'select * from Table1 where Field1 = ' + @string + '')
October 26, 2012 at 8:10 am
Refer to the following link
http://www.mssqltips.com/sqlservertip/1793/sql-server-indexing-basics/
October 18, 2012 at 4:40 am
Check the following link may help u
October 18, 2012 at 4:20 am
DATEDIFF ( datepart , startdate , enddate )
October 17, 2012 at 7:36 am
This will enforced the login of the Windows password policies of the computer on which SQL Server is running.
October 17, 2012 at 6:56 am
Check is there policies enforced?
October 17, 2012 at 6:30 am
use distinct clause in select
October 16, 2012 at 8:14 am
Check update statistics and fragmentation level of the tables
Need look at the table structure,indexes and SP to know more...
October 16, 2012 at 7:59 am
Avoid cursor and try use while..loop
October 16, 2012 at 7:13 am
What is the server meant for ? Reporting or transactions? What is the budget ?
October 15, 2012 at 7:52 am
Delete the two columns in Report file and recreate the same and check
October 11, 2012 at 5:15 am
Viewing 15 posts - 1 through 15 (of 321 total)