Viewing 15 posts - 4,756 through 4,770 (of 7,164 total)
Path as in where it stores it in the file system or the Data Collector?
As in where it is stored in msdb.
For the highlighted package the comand line to delete...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 3:44 pm
In the Process Tab:
1. Instead of setting Executable to C:\ePLUM\bin\ImportAll.bat, set it to fully qualified path to cmd.exe (e.g. C:\WINDOWS\system32\cmd.exe on my workstation).
2. Set Arguments to /C "C:\ePLUM\bin\ImportAll.bat"
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 2:53 pm
In your Exec Process task you may have to pass the location of the batch file as a parameter to cmd.exe. Check out the /C switch, from a cmd prompt:
cmd.exe...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 2:38 pm
How are you opening BIDS initially? I have seen different entry points into Visual Studio offer different menu configurations.
If all else has failed, have you tried resetting your environment by...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 2:33 pm
Try it with backslashes:
\Path\SubPath\PackageName
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 2:23 pm
Embarcadero DBArtisan
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 2:22 pm
If you want the subscriber to reflect change immediately, you want Transactional Replication, not Snapshot Replication.
Transactional Replication Overview
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 2:01 pm
I could have misread, but I took it to mean the OP needs something like:
SELECT ContactID
FROM Person.Contact WITHOUT (INDEX(AK_Contact_rowguid))
which, oddly, yields no results from Bing 😀
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 1:49 pm
Your log chain will be fine, but it will not help your log file size:
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 1:34 pm
Is it a clustered index, or nonclustered?
If nonclustered a simple way requiring no knowledge of the index definition:
ALTER INDEX index_name ON schema_name.table_name DISABLE ;
-- Rebuilding the index re-enables it
ALTER INDEX...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 1:29 pm
One option to safely rid the database of one of the two overlapping indexes is to INCLUDE the third column in the unique index. Included columns are not considered in...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 1:14 pm
I include msdb it in my index maintenance job. It does not require downtime, it may just block other processes while the indexes are being rebuilt...a normal side effect of...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 1:01 pm
Anytime, thanks for posting back, happy to assist 🙂
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 11:26 am
Can you use transactional replication to bring data into scope, but into a different schema where you can add indexes? Know that it is possible to replicate data in one...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 10:52 am
The top 5 targets I look at when trying to improve performance are:
1. queries
2. queries
3. queries
4. indexes
5. schema
It sounds like you cannot change any of those.
If by chance you're having...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 27, 2012 at 10:35 am
Viewing 15 posts - 4,756 through 4,770 (of 7,164 total)