Viewing 15 posts - 571 through 585 (of 9,641 total)
Can you explain what you mean by is partitioning working?
If you have partitioned the table and have data that belongs on multiple partitions and the data is on the multiple...
October 31, 2014 at 11:14 am
Yes you have parallelism running in this case. Here are some questions:
1. What is the max degree of parallelism setting for the SQL Instance? If it is...
October 31, 2014 at 11:02 am
If [schemaName] is really owned by dbo, then execute permissions on the procedure should work using ownership chaining. Unless there is a specific deny update permission for that user....
October 31, 2014 at 10:42 am
rodjkidd (10/28/2014)
Less that 24 hours for my flight to Seattle...This album seems appropriate seeing as it took me all week last time to find him! 😀
Rodders...
Hey, it's not like I...
October 29, 2014 at 6:09 am
The difference in days between today (2014-10-27) and the dates you have listed is not greater than or equal to 0, so the code will not change the expected ship...
October 27, 2014 at 11:36 am
durai nagarajan (10/27/2014)
TO DISK = @BackupLoc
your @BackupLoc should return path with file name like "D:\Backup\Saturday\test.bak".
hope this is the error.
The problem is that you don't have "\test.bak" in @BackupLoc...
October 27, 2014 at 9:36 am
Based on your test data is looks like this works:
WHEN j.JobStatus <>'S' AND DATEDIFF(DAY,CAST(J.ExpectedDate AS DATE), @Date) >= 0 THEN
...
October 27, 2014 at 9:09 am
spaghettidba (10/22/2014)
Stefan Krzywicki (10/22/2014)
Of course, regionalisms mean it could be called most anything.
For example: In most of the USA, a blended milk and ice cream drink is called a Milk...
October 23, 2014 at 11:17 am
I think you should read the BOL article on Recovery Models, http://msdn.microsoft.com/en-us/library/ms189275(v=sql.90).aspx because some of your assumptions are incorrect. For example a database in SIMPLE recovery can have differential...
October 23, 2014 at 10:36 am
You should read this article, http://www.sqlservercentral.com/articles/72993/, by Jeff Moden. As far as I'm concerned that's got the best method for splitting strings.
October 23, 2014 at 10:26 am
Since DBCC CHECKDB is returning errors, my best suggestion is to restore from the last good backup. Unfortunately that appears to be a few days ago, so you will...
October 23, 2014 at 10:14 am
I'd suggest reading this article by Erland Sommerskag, http://www.sommarskog.se/query-plan-mysteries.html. It explains how different SET OPTIONS are used by different providers and can affect query compilation. I'd be willing...
October 23, 2014 at 9:58 am
It depends. The way the current code I provided works it just links the first 2 rows for a specific med_rec_no regardless of gap. So if I have...
October 22, 2014 at 1:50 pm
spaghettidba (10/22/2014)
For me this is a grill
And this is a barbecue
Am I wrong?
I'd say both are grills here in the U.S.
October 22, 2014 at 12:46 pm
Your welcome. Just note that is only works for 2 rows per med_rec_no and doesn't take into account the likelihood for a gap in times. The code assumes...
October 22, 2014 at 12:36 pm
Viewing 15 posts - 571 through 585 (of 9,641 total)