Viewing 15 posts - 1,471 through 1,485 (of 2,897 total)
This sounds a lot more complicated than using something like xp_crypt or other tool to encrypt columns. What's the benefit ?
April 14, 2010 at 8:21 am
Take more frequent t-log backups and run a server side trace. See if you can match up activity in the trace with the same time that you have large t-log...
April 14, 2010 at 6:34 am
Scenario 1) Why do you want them on the same drive ?
To move a file, detach the database, move the file, attach the database specifying the new file location. The...
April 14, 2010 at 12:35 am
How frequent are your full backups ?
How frequent are your transaction log backups ?
" ... how can we move a ldf file to go to the mdf file ..."
Do...
April 13, 2010 at 6:29 pm
Also, keep in mind that if you don't include the hours & minutes, SQL assumes 00:00:00. That can be important sometimes. If you were searching for <= instead of...
April 13, 2010 at 1:13 pm
It's annoying and not practical to dig up an old thread, especially one with 4 pages, and then put your own problem at the end. I started to rant more,...
April 13, 2010 at 8:00 am
If you look at the sizes of your t-logs since the last full, would that help give you an idea of the size of a new diff ? Not...
April 12, 2010 at 3:25 pm
When I have this problem, I "cheat" if I can.
I create a temp table, with a unique index on the column containing duplicates.
Then set "ignore duplicates" on the index.
Then...
April 12, 2010 at 1:12 pm
When I have this problem, I "cheat" if I can.
I create a temp table, with a unique index on the column containing duplicates.
Then set "ignore duplicates" on the index.
Then...
April 12, 2010 at 1:07 pm
You could omit select queries since they don't cause log growth.
Do you have ETL processes that are importing or updating large amounts of data ?
April 12, 2010 at 9:19 am
Thanks for the replies.
I am breaking the jobs into batches ... very tedious :crazy:
April 11, 2010 at 2:14 pm
Transactional replication popped into my mind too. But you will need to have primary keys on the tables. If you don't have primary keys, then you have to do snapshot...
April 8, 2010 at 9:36 pm
Greg Charles (4/8/2010)
Here's another:
This is the one I used. A couple of clicks and they were all done !!
April 8, 2010 at 9:28 pm
Thanks for the link. Is there any way to create a function within SQL ? I don't know anything about C#.
April 6, 2010 at 6:48 am
Will BlowFish or TwoFish work with image data ?? I downloaded the latest SQL toolkit and Tried running TwoFish after modifying it to handle image data converted to varbinary(max)....
April 5, 2010 at 3:03 pm
Viewing 15 posts - 1,471 through 1,485 (of 2,897 total)