Viewing 15 posts - 1 through 15 (of 372 total)
Laura Schmalzbauer (4/15/2011)
IndexID Name0NULL
2IX_mms_cs_linkobjectstateattribrefere
3IX_mms_cs_linkrefereobjectattribstate
4IX_mms_cs_linkobject_idis_deleted
5IX_mms_cs_linkobject_idis_renamed
and the index that is giving me issues is index_id = 5
Is that the exact output from sys.indexes, with the case of the index names...
April 17, 2011 at 5:52 pm
One way to speed up the preprocessing of your CSV files is to use Log Parser to convert them to TSV files. A TSV should be easier for SSIS...
March 9, 2011 at 9:00 am
Hi Bea,
It could be that the VM's time is drifting enough during the backup. Which in turn could cause some authentication related issues.
For some troubleshooting steps related to timekeeping:...
September 3, 2010 at 3:21 pm
Hi Phil,
Since you used Process Explorer you might want to consider Process Monitor.
The key is to enable filtering for file activity only, configure it to drop filtered events and...
May 26, 2010 at 7:10 pm
Hi Paul,
The server doesn't timeout when running a query (linked servers aside). It's the client that tells the server to cancel a query based on its command timeout value....
May 26, 2010 at 6:28 pm
Hi Jörg,
Here's one way to get the binary value from the string as long as it looks like S-1-5-21-aaaaa-bbbbb-ccccc-ddddd.
/*
S = security identifier
1 = revision 1 of the...
May 17, 2010 at 6:17 am
Backing up the SMK, DMK and certificates isn't required for a backup/restore situation.
A) No additional steps required after restoring the database.
B) Allow the SMK to open the DMK after the...
April 29, 2010 at 11:49 am
I think you're close.
Rather than creating a certificate with the same name in both databases you should backup the certificate from the first database and restore that to the...
April 22, 2010 at 3:26 pm
Here's where you'd find that for SSMS with 2005.
[font="Courier New"]\HKCU\Software\Microsoft\Microsoft SQL Server\90\Tools\Shell\Open Find\Places\UserDefinedPlaces[/font]
Add subkeys Place0,Place1,Place(n)
Under each subkey add two REG_SZ values
[font="Courier New"]Name = "Shortcut Name"
Path = "Folder location"[/font]
April 20, 2010 at 3:08 pm
You might be able to find out when it happened using the fn_dblog function.
SELECT [transaction id],[begin time],[spid],[allocunitname],[operation]
FROM fn_dblog(NULL,NULL)
--WHERE operation='LOP_DELETE_ROWS'
--WHERE [transaction id]='0000:00027a0a'
April 19, 2010 at 2:09 pm
Have a look at Robust Copy (robocopy); downloadable as part of a Windows resource kit. By default that will not overwrite files at the destination.
[font="Courier New"]robocopy e:\Backup-Location\ \\ServerA\NetworkShareName *.bak[/font]
Or,...
April 1, 2009 at 6:35 am
Could be wrong but I thought SQL Express had Autoclose as a default option.
If that's the case then changing Autoclose on each database from True to False should prevent...
March 5, 2009 at 6:39 am
How did you configure the error output? Did you change it to redirect or ignore for every column?
You could post your .DTSX file and a sample input file that...
March 2, 2009 at 8:24 pm
You could add another destination for the errors. For example, add a flat file destination, connect the red line from the source to that and reconfigure the Error Output...
March 1, 2009 at 3:54 pm
After the trace has been running for awhile stop it by setting the trace status as Perry had shown in a previous post.
You are probably thinking of DTA, Database Engine...
February 22, 2009 at 9:27 am
Viewing 15 posts - 1 through 15 (of 372 total)