Viewing 15 posts - 5,236 through 5,250 (of 7,614 total)
real.forte 18467 (4/2/2015)
The account I perform my restore from is dbcreator and the restore operation itself works well. It is just that it leaves the database with no dbo,...
April 2, 2015 at 2:35 pm
You don't have to be a full sysadmin, necessarily, but you do need the proper authority/permissions.
The dbcreator role should handle the restore.
You'd need to be db_owner to issue...
April 2, 2015 at 2:15 pm
Immediately after every restore of that db, run this command:
EXEC sp_change_users_login 'UPDATE_ONE', 'nSpekUser', 'nSpekUser'
April 2, 2015 at 2:02 pm
djj (4/2/2015)
If you have a VARCHAR I would suggest converting to a date format of some sort before compare.
A bad idea. Not necessary and could potentially force...
April 2, 2015 at 12:36 pm
GilaMonster (4/2/2015)
ScottPletcher (4/2/2015)
You can't name the indexes yourself unless you insure they're unique. It's a pain, but using dynamic SQL you can do it.
That's the case for constraints, not...
April 2, 2015 at 10:37 am
dwilliscp (4/1/2015)
CREATE TABLE...
April 2, 2015 at 10:28 am
Use 'YYYYMMDD', since that format always works correctly in SQL Server; YYYY-MM-DD doesn't work correctly if the local settings are for dmy instead of mdy.
WHERE table_column = CONVERT(varchar(8), GETDATE(), 112)
Never...
April 2, 2015 at 10:20 am
What's critical is to get the best clustering. If, to do that, you need to change the PK to match the clustering key, then you really need to do...
April 2, 2015 at 8:31 am
Sioban Krzywicki (4/1/2015)
ScottPletcher (4/1/2015)
SET DEADLOCK_PRIORITY...
April 1, 2015 at 4:00 pm
Matthew Darwin (4/1/2015)
ScottPletcher (4/1/2015)
All excellent points.
Keep in mind though:
1) You can leave the PK solely on the SmsID column and still cluster the table by ( date, id...
April 1, 2015 at 3:35 pm
Matthew Darwin (4/1/2015)
April 1, 2015 at 2:30 pm
You can try to get SQL to make the ALTER the task that SQL kills if a deadlock occurs, but I've found it's not 100% effective.
SET DEADLOCK_PRIORITY -8
ALTER INDEX ALL...
April 1, 2015 at 1:30 pm
Cluster the original table on ( CreatedDate, SmsId ), in that order, not vice-versa.
Once you get the best clustering key, you're likely not to need partitioning yet. And, if...
April 1, 2015 at 1:27 pm
I've seen it cause errors, although it's somewhat obscure, a combination of things, including linked servers, IIRC. Perhaps it's been fixed, but I don't intend to risk job failures...
April 1, 2015 at 8:55 am
CELKO (3/31/2015)
use lowercase only for data type names in SQL Server
.
No. The human eye reads certain words as a single unit called a bouma. The keywords in programming...
March 31, 2015 at 4:02 pm
Viewing 15 posts - 5,236 through 5,250 (of 7,614 total)