Viewing 15 posts - 4,756 through 4,770 (of 7,168 total)
Look for open transactions in your database.
March 27, 2012 at 8:08 pm
When you say you're "in the instance for SQLproduction" do you mean you have an open window in SSMS? Or are you using some other means of backing up the...
March 27, 2012 at 6:26 pm
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...
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"
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...
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...
March 27, 2012 at 2:33 pm
Try it with backslashes:
\Path\SubPath\PackageName
March 27, 2012 at 2:23 pm
If you want the subscriber to reflect change immediately, you want Transactional Replication, not Snapshot Replication.
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 😀
March 27, 2012 at 1:49 pm
Your log chain will be fine, but it will not help your log file size:
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...
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...
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...
March 27, 2012 at 1:01 pm
Anytime, thanks for posting back, happy to assist 🙂
March 27, 2012 at 11:26 am
Viewing 15 posts - 4,756 through 4,770 (of 7,168 total)