Viewing 15 posts - 10,336 through 10,350 (of 49,566 total)
OCTom (1/20/2014)
I agree with you comlpetely. It can set one apart from the crowd.
I find it ironic that you are writing this as your editorials often have misspellings and grammatical...
January 20, 2014 at 7:17 am
What do you mean 'best way'?
To change collation, you need to run an ALTER TABLE ... ALTER COLUMN on the columns you're changing.
Test in a non-production environment first, make...
January 20, 2014 at 6:55 am
Ok, and...?
With the trigger as you have posted it, any insert will fire that trigger and hence will run that procedure. Whether it works as intended is another matter, but...
January 20, 2014 at 6:53 am
Collations aren't per database or object. The collation on the database is just the default for new columns, there's no collation on an object. Columns are what have collation defined...
January 20, 2014 at 6:46 am
It's called parameter sniffing. Plans ARE replaced when you recompile.
Recompile either removes the plan from cache on the spot forcing a new compile the next time, or marks the...
January 20, 2014 at 6:45 am
Define 'doesn't work'?
What does that procedure do? What's the trigger supposed to do? Why is the trigger not referencing inserted or deleted pseudo-tables at all?
January 20, 2014 at 6:21 am
Also consider the SSIS Transfer Logins task.
January 20, 2014 at 5:25 am
If you're getting a collation error, you have two different collations. Check the columns, the database setting just defines the defaults
As for changing... Test on a non-production environment first! You...
January 20, 2014 at 5:21 am
Yes you can change it, it's a tonne of work. You'd have to run an ALTER TABLE ... ALTER COLUMN on every single char and varchar column in the database.
Doing...
January 20, 2014 at 4:48 am
It should be, but why count(<column name>) rather than Count(*)?
January 20, 2014 at 3:28 am
Wait until recovery finishes!
There is no alternate solution. There is no magic 'instantly finish recovery' button. Be patient and wait for the recovery to complete, then your DB will come...
January 20, 2014 at 2:54 am
praneethydba (1/20/2014)
As the database is very big and no place on drive. we stopped taking backup's.
So what do you expect to do when something goes seriously wrong and the DB...
January 20, 2014 at 2:44 am
Wait.
There is nothing else you can do, particularly since you have no backup. You have to wait until recovery is complete.
When you restarted the server all you did was force...
January 20, 2014 at 2:40 am
Should be the same all other considerations being equal.
January 20, 2014 at 12:40 am
Depends. If you create the index on the partition scheme, it will be partitioned like the table and stored across the three filegroups. If you create the index on a...
January 19, 2014 at 11:55 pm
Viewing 15 posts - 10,336 through 10,350 (of 49,566 total)