Viewing 15 posts - 856 through 870 (of 2,486 total)
No license is required as long as you connect to a licensed version of SQL Server.
September 5, 2005 at 5:18 pm
Open Query Analyzer on your machine, or the local server, and you should get a dialog prompting you for connection details. Put in the exact same details you are using when...
September 5, 2005 at 5:59 am
Have you tried logging in to the remote server using Query Analyzer? Maybe the username and/or password are different on the remote server.
September 5, 2005 at 1:47 am
For the "made using this security context" option, did you use an SQL Login that has be defined on the remote server?
You can setup a linked server easier using T-SQL...
September 5, 2005 at 12:48 am
When defining the linked server what options/entries have you put on the Security tab?
September 4, 2005 at 11:55 pm
"i have enabled mixed mode authentication.even then its not displaying the intended result."
So does this mean you can connect to the linked server and get results, but your query is...
September 4, 2005 at 11:45 pm
So is this for the insert/select part, the delete, or the whole lot?
When you remove the records from the table, SQL removes the entries from the index as well, so...
September 4, 2005 at 7:35 pm
The main thing I hate about sqlmaint is it's all or nothing approach.
Generally, what I would be doing is checking for fragmentation first using DBCC SHOWCONTIG. Then just reindex, or...
September 4, 2005 at 5:21 pm
Many ways to achieve this, try each and pick one that suits your need best. Also, be aware that depending on how you've designed your package you may need to...
September 4, 2005 at 5:16 pm
When you execute,
exec master.dbo.sp_msforeachdb "USE [?] BEGIN SELECT '?' EXEC sp_helprolemember END"
by itself in Query Analyzer you will see that seperate resultsets are returned. You can't insert seperate resultsets...
September 1, 2005 at 8:14 pm
Try these,
http://support.microsoft.com/default.aspx?scid=kb;en-us;873160
http://support.microsoft.com/default.aspx?scid=kb;en-us;329332
September 1, 2005 at 1:17 am
How about this to show the last weekday in the month ?? The important bit is the first line.
SET DATEFIRST 1 DECLARE @MyDate datetime-- example 1 with end...
August 31, 2005 at 9:45 pm
Take a look at this discussion thread and see if it helps any.
August 31, 2005 at 1:38 am
So for the email task, how many Precedence Constraints do you have?
For code you can use the "Formatted" style. Then text is displayed like this
If DTSGlobalVariables("StartMonth").Value Then ' Update the following...
August 31, 2005 at 1:34 am
Viewing 15 posts - 856 through 870 (of 2,486 total)