Viewing 15 posts - 136 through 150 (of 2,903 total)
jasona.work (6/10/2015)
June 10, 2015 at 11:02 am
Things to look at:
What jobs/processes are running before/during the time out?
How is the user connecting? Remotely from home or another location? RDP from the same location? Direct...
June 8, 2015 at 3:48 pm
Could be someone "doing something they shouldn't". We caught someone on a dev server dropping logins and other things because "they didn't think they were needed anymore". The...
June 8, 2015 at 3:42 pm
briancampbellmcad (5/18/2015)
May 18, 2015 at 2:13 pm
You are quite skilled as a DBA/Developer/whatever and that is what the job requirement stated. However, we really need someone that can maintain computers. How do you feel...
May 14, 2015 at 3:39 pm
Depends. This is where you need to set up a test database/tables and try all your methods out. You can us smaller amounts of data for testing, but...
May 14, 2015 at 1:03 pm
This will get you started....
Using SSMS, find the database you want to import the spreadsheet into. Right click on the database and choose: Tasks>Import Data. Follow the wizard...
May 14, 2015 at 10:05 am
GilaMonster (5/14/2015)
Over the years I've been very careful to keep my blog completely non-commercial, no adverts, no plugs for my company, nothing. Partially because when I...
May 14, 2015 at 9:53 am
Does the table have a FOR INSERT trigger on it? If so, the trigger has to fire for every row. Disable the trigger while the load is being...
May 13, 2015 at 9:15 am
My thoughts....if the user has permissions to connect to the database and has db_datareader/db_datawriter; the next things I would check are:
1. the permissions on the table itself. have they...
May 5, 2015 at 2:47 pm
With all of these statements...
ISNULL(NO_OF_SAMPLE_DAYS,'NO Backup Job Ran'), '',
td = ISNULL(BackupSizeMB,'NO Data Found'), '',
td = ISNULL(TotalDBSpaceMB,'NO Data Found'), '',
td = ISNULL(DataGrowth,'NO Data Found'), '',
td = ISNULL(LogGrowth,'NO Data Found'), '',
Take the...
April 30, 2015 at 1:40 pm
It really sounds like the corruption happened during the scrubbing.
If I understand correctly:
You backed up/restored the database from SS2000 to SS2005.
That should have done an upgrade of the database.
Then...
April 30, 2015 at 8:33 am
I would also add validation to your procedure. For example, what if you run this:
EXEC MasterInsertUpdateDelete @firstname = 'John', @lastname = 'Smith', @city = 'Denver', @StatementType = 'Delete'
Your...
April 29, 2015 at 3:12 pm
jonathan.crawford (4/28/2015)
SQLBill (4/27/2015)
Lynn Pettis (4/24/2015)
jonathan.crawford (4/24/2015)
April 29, 2015 at 9:46 am
I think it's silly....why would I want another install of SQL Server on one of my SQL Server boxes? Either allow it to be 'centralized' and/or give me an...
April 27, 2015 at 2:28 pm
Viewing 15 posts - 136 through 150 (of 2,903 total)