Viewing 15 posts - 3,721 through 3,735 (of 7,496 total)
Have a look at :
- "Moving Large Table to Different File Group" http://www.sqlservercentral.com/articles/Administration/64275/
- "Moving Tables and Indexes to Filegroups En Masse " http://www.sqlservercentral.com/articles/Files+and+Filegroups/65538/
- "Move a table between filegroups" http://www.sqlservercentral.com/scripts/Miscellaneous/31526/
May 8, 2009 at 7:36 am
Such operation will be noticeble for ongoing operations !
Can you afford downtime ?
If yes,
Can you move the whole db file, or do you want just to...
May 8, 2009 at 6:40 am
I think in this case it is worth the try.
May 8, 2009 at 12:20 am
Did you perform datapurity checks after you restored the db ?
May 7, 2009 at 4:11 pm
mikesigsworth (5/7/2009)
May 7, 2009 at 3:22 pm
As shown in my previous reply a password encrypted master key can only be modified using the path of:
OPEN MASTER KEY DECRYPTION BY PASSWORD = 'TestEncryption31' ; -- old...
May 7, 2009 at 3:16 pm
So this proves you actually have NULL s in the designated date column !
Since you didn't order the first time, these rows will have been some where random in the...
May 7, 2009 at 2:56 pm
Your variables content must match the predicates conventions.
In this case the conventions for Like.
Did you test this :
SET @Value = N'%My[_]Matching[_]Value%';
May 7, 2009 at 2:53 pm
skjoldtc (5/7/2009)
May 7, 2009 at 7:14 am
[
pp.pragnesh (5/7/2009)
I totally agree with you, many of the developers are using meaningless aliasing and that would be very tough to debug in future and waste of time. even...
May 7, 2009 at 5:51 am
I advise to use aliasses in all queries that involve more than one table, view, ...
This is really not a comparable issue for using leading commas, upper / lower case...
May 7, 2009 at 1:22 am
Please test this scenario (based on my previous post).
In my test it works on the second server.
edited this warning from BOL topic "ALTER MASTER KEY"
The REGENERATE option re-creates the database...
May 7, 2009 at 12:59 am
In your OP you state you are running SQL 2005.
Can you post the version info?
Select @@version
Can you also post the result of this ?
select MKP.*
, D.name as DbName
from sys.master_key_passwords...
May 7, 2009 at 12:33 am
psangeetha (5/6/2009)
We are facing this critical issue, I need some help from you experts. I ran the encryption and decryption procedures on prod db and created a new...
May 6, 2009 at 8:05 am
As MarkusB showed, dynamic sql is the solution if you want to do it using TSQL.
vbs or powershell using SQLSMO is an alternative.
FYI I use this script to add a...
May 6, 2009 at 4:05 am
Viewing 15 posts - 3,721 through 3,735 (of 7,496 total)