Viewing 15 posts - 181 through 195 (of 1,580 total)
Tracer tokens are really just for confirming that "yes" latency is poor (or good depending on if things are running smoothly). How large is your set up (i.e. how...
June 8, 2014 at 8:00 am
I faced the same issue here at this company. Prior to coming on board here I had never used the hint, but here's it's literally in every reporting procedure...
June 5, 2014 at 10:10 pm
I know this is probably a retarded way to go about it, but got it to work using this:
CREATE FUNCTION [dbo].[fx_FolderExists] (
@Folder nvarchar(500),
@Action tinyint
)
RETURNS int AS
BEGIN
DECLARE @Exists int, @ObjFile...
June 5, 2014 at 11:20 am
Thanks for the suggestions guys! I'll take a deeper look over the next day or two and see what I can come up with!
May 20, 2014 at 11:28 am
This would work, however wedging it into the current query looks like an dreadful task. For the basis of my example I used @String to parse, but in relation...
May 19, 2014 at 10:44 pm
Darn. Missed that one. Had it stated "In 2014 can you run SQL Server in your existing data center and store data files for a database in the Azure...
April 21, 2014 at 8:27 am
Yes you can simply take another full backup. Full backups do not affect the LSN chain for log backups in any way (except for the very first full backup...
April 17, 2014 at 10:22 am
That works, howeve, in the unlikely event there's stuff going on in the milliseconds portion of the datetime, I would opt for >= 1st day of the month and <...
April 16, 2014 at 7:50 am
Thanks Perry. I realize it was supported, just wanted to make certain there was no "behind the scenes" issues with the rename. Appreciate the assurance!
April 16, 2014 at 7:32 am
Yes, it should, but as sqlbuddy mentioned, it could be blocked for a variety of reasons. Try extending it to 180 for testing purposes only (or zero for no...
April 15, 2014 at 1:40 pm
ramana3327 (4/15/2014)
Correct me if I am wrong. I think covering Index is nothing but adding columns that are participating in the where clause right? What about the include columns. What...
April 15, 2014 at 11:10 am
"Microsoft SQL Server Native Client 10.0" Hresult: 0x80004005 Description: "There is insufficient system memory in resource pool 'internal' to run this query."
Do you have the resource governor running on this...
April 15, 2014 at 9:22 am
You database has the space that you've either "given" it or is based upon your auto-growth settings. If you ran out of space I would guess that you have...
April 15, 2014 at 8:33 am
Viewing 15 posts - 181 through 195 (of 1,580 total)