Viewing 15 posts - 46 through 60 (of 92 total)
Let me clarify:
If you have servers S1 and S2. Let us say S2 is defined as a linked server on S1. I am assuming you have selected the windows user...
April 7, 2004 at 8:04 pm
From my experience, use cursors only when there is no set based solution. And trust me, there are quite a few where there is just no set based solution (for...
April 7, 2004 at 9:00 am
Were you running the query from the source server (ie the server where linked server is setup) ? If you are running from a client then delegation needs to be...
April 7, 2004 at 8:32 am
Once you rename the source table A to A_bk, do not create a new table A yet. Just say
Select * Into A From A_bk.
This will create a table A...
April 2, 2004 at 12:31 pm
When a linked server is down the TSQL batch exits and there is no way to trap the error. If you expect the code to handle this issue, use a...
April 2, 2004 at 12:22 pm
Thank you every one for your feedback and those using MOM please post any gotchas. I used sitescope in the past and found that to be fairly easy to setup...
March 18, 2004 at 6:36 pm
Defragmenting within the database (ie at the table level) has almost always solved our performance issues, so never had to go to the extent of OS defragmentation. One of the...
March 17, 2004 at 7:16 pm
Does the account have "logon as a batch job" user rights?
March 17, 2004 at 7:08 pm
One of the Microsoft articles suggests that changing the SQL Server or agent account should be done through the SQL EM, since the account needs some registry and file system...
March 17, 2004 at 8:53 am
You can declare a global variable, assign values from the ini file to the global variable and then read the global variable from the ActiveX script. Would that be acceptable?
March 12, 2004 at 9:18 am
This is what I came up with. Any better SQLs out there?
DELETE pl FROM sysdtspackagelog pl
WHERE lineagefull NOT IN ( SELECT TOP 10 lineagefull FROM sysdtspackagelog pl2
WHERE pl.name...
March 9, 2004 at 4:17 pm
The space Overhead for the clustered index is so small, that it is never a factor. It depends on the number of fields in the key, their lengh etc, but...
March 5, 2004 at 4:10 pm
The database and log files should be on separate arrays / raid volumes. There is no exception to that rule. But, I usually place all my indexes (clus and non-clus)...
February 27, 2004 at 1:03 pm
Is the MS Distributed Transaction Coordinator service running on the remote server?
February 21, 2004 at 9:09 pm
Viewing 15 posts - 46 through 60 (of 92 total)