Viewing 15 posts - 391 through 405 (of 616 total)
winmansoft (1/15/2013)
So log backup only reuse the space. But shrinking the log file will increase fragmentation ryt? So is it good habit to shrink the log file?
LOL.. got to love...
January 15, 2013 at 6:33 am
Jayanth_Kurup (1/15/2013)
There seems to be parrallelism , do u have proper indexes defined?
There also seems to be Page...
January 15, 2013 at 5:55 am
You can store package configurations in the database too
Jayanth Kurup
Do you mean having a table that contains the complete connection string (i.e. including user name and password)?
January 15, 2013 at 5:08 am
Right-Click tempdb in SSMS and select files:
January 15, 2013 at 4:48 am
User error... No fix to report lol
Didnt read full instructions. MS Baseline Configuration Analyzer needs to be installed first.
Then after you install SQL Server BPA, it gets added to the...
January 14, 2013 at 12:27 pm
Shouldn't there be a Ticket dimension table with attributes that describe the type of ticket?
Not entirely sure the Queue dimension table is appropriate to be honest.
January 14, 2013 at 7:32 am
What's the purpose of the Queue dimension table?
SSIS is great for performing ETL, so yes, if you have the knowledge and you're comfortable developing packages then go ahead and use...
January 14, 2013 at 7:02 am
Can you double check to make sure that the SQL Server service account has access to the network share?
January 11, 2013 at 7:21 am
fearghalreilly (1/9/2013)
i went with answer B but not fully sure if it was the correct decision ....
Sorry to say that you went for the wrong option!
B) de-normalization speeds up data...
January 10, 2013 at 10:22 am
there is constraint on the table which doesn't allow this column to be NULL. This is to maintain referential integrity. You're attempting to insert a value in one column so...
January 7, 2013 at 12:04 pm
Ag_id is likely to be the primary key of the table you're trying to insert into. This is the error you posted earlier:
Cannot insert the value NULL into column 'ag_id',...
January 7, 2013 at 11:46 am
insert into agency_deplo_plan (deplo_plan_name)
select act_pln
from AGENC;
Error:
Msg 515, Level 16, State 2, Line 1
Cannot insert the value NULL into column 'ag_id', table 'elPaso.dbo.agency_deplo_plan'; column does not allow nulls. INSERT...
January 7, 2013 at 10:29 am
Are you sure this is all the code? The error doesn't tie up with the code:
declare @nCount int
select @nCount = COUNT(*) from agency_deplo_plan
if @nCount = 0
BEGIN
insert...
January 7, 2013 at 10:20 am
Viewing 15 posts - 391 through 405 (of 616 total)