Viewing 15 posts - 361 through 375 (of 1,584 total)
We would need to see the queries that are causing it. Could be UPDATE statements seeing that there's frequent rowlocks but just shooting in the dark here and haven't...
March 8, 2014 at 6:07 am
Since this is a new position, it sounds like an ideal time to talk to your supervisor and relay the "you hired me because..." and "this is what we need...
March 7, 2014 at 9:51 pm
You want to update what?
Without knowing what it is you wish to update we can't really help, but to add an hour to a datetime column, simply do something like:
UPDATE...
March 7, 2014 at 9:46 pm
One other thing, you didn't mentioned anything about the disk sub-system this all sits on...what kind of hardware do you have? If you've got lots of storage arrays/LUNS or...
March 7, 2014 at 9:39 pm
I know this is off topic to what you were expecting for an answer but, well, you may want to reconsider changing your statistics job to skip the nightly FULLSCAN...
March 7, 2014 at 9:38 pm
To add to SQLCJ's post, you will need to include the ORDER BY date_value at the end to get the OP's expected result - and some ugly string manipulation for...
March 7, 2014 at 11:03 am
No problemo! Hope it helps get you going in the right direction 🙂
March 7, 2014 at 10:15 am
How does the Group table factor in to this example?
Do you have an expected "exact" output of what the final result should be?
The best I can do (which I'm sure...
March 7, 2014 at 10:12 am
+1 Kraig
March 6, 2014 at 1:49 pm
"It depends"
This would be specific to your environment, your databases, size, volume of data being moved around, etc.
At our shop, I typically look for anything over 250,000 reads. I...
March 6, 2014 at 9:07 am
Access will need to be granted to the other databases for the account(s) that are accessing the tables via the stored-procedure. Just check to make sure what the procedure...
March 6, 2014 at 8:46 am
You will have some contention during the restore or attach process to the new server (this should not impact the existing server). Without knowing whether or not you have...
March 6, 2014 at 8:43 am
While you'd have to test it to be sure, I'm pretty sure if you created an ODBC connection to SQL Server via Access using the user's regular credentials, SQL server...
March 6, 2014 at 8:27 am
Yes. It can be locked down.
Make sure whichever account is used by the application has appropriate access, exclude anyone else?
For stored-procedures, you can user USE MASTER; GRANT...
March 6, 2014 at 7:52 am
Viewing 15 posts - 361 through 375 (of 1,584 total)