Viewing 15 posts - 6,331 through 6,345 (of 7,616 total)
I think so, but I couldn't swear to it. I think the differential bitmaps are restored as-is with the db, and not reset, but I'm not 100% sure. ...
November 18, 2013 at 4:51 pm
Donald Sawford (11/18/2013)
I know that a full backup should be run immediately after a restoration
That shouldn't really be necessary, assuming you still have the backups you used to do the...
November 18, 2013 at 1:53 pm
MAX(age) seems safe enough -- no one gets any younger :-).
Combining MIN(name) and MAX(name) would allow one name change ... that should handle everyone, right!?
/*
insert into #temp(id,name)
select 2,'Jane Single'
insert into...
November 18, 2013 at 1:16 pm
No, but I do know that you're never supposed to remove the Guest account from master. Basically SQL requires it. Put it back and try again before making...
November 13, 2013 at 4:22 pm
Something like below. If the LAST_NAME and FIRST_NAME are in the same table (shouldn't be, from a design standpoint), then you can remove the outer query and join and...
November 13, 2013 at 4:17 pm
DarthBurrito (11/13/2013)
I will get a false 1 since the modifieddate will always be larger than the ClosedField that has a NULL.
How can I tell it when the DateClosed field is...
November 13, 2013 at 2:09 pm
a20213 (11/7/2013)
Indeed, the same day of week has to be the same, mandatory.
PS: When you say "So, adding 6 mos gives a date of '2014-11-05', which becomes '2014-11-11',...
November 7, 2013 at 8:31 am
None of that is necessary: a simple calculation can give you the future date you need.
The code below assumes you want a future matching-day date on or after the months-added...
November 6, 2013 at 4:38 pm
You should also consider using option "SORT_IN_TEMPDB = ON" in the rebuild. That should give you about the same space gains without having to use a separate fg within...
November 6, 2013 at 4:05 pm
1. The only way to rebuild heaps is to add a clustered index; you can then drop it. Since, however, adding or dropping a clus index requires rebuilds...
November 6, 2013 at 3:59 pm
SELECT
MatchID, KeyCode,
CASE KeyCode
WHEN 'MTDT' THEN CONVERT(varchar(100), MatchDate, 101)
...
November 5, 2013 at 3:44 pm
Safer might be:
WHERE
FtgNr NOT LIKE '[^0-9][^0-9]%1'
Unless you really want "alphabetic" rather than "non-numeric" as originally stated. Spaces, underscores, periods, etc., would fail this test but pass the other one...
November 5, 2013 at 3:35 pm
RVO (11/4/2013)
We don't have authority to alter table definitions.
This is Financial Application database by third party.
We don't own the database.
We even create all our custom code in a separate (Diff_Data)...
November 5, 2013 at 8:54 am
I think the clustered index should be ( accounting_period ) or, if you prefer, ( accounting_period, prj_code ) rather than the other way around. I don't think phase_code needs...
November 4, 2013 at 3:54 pm
Please post the DDL, including all indexes, for the "prj_detail" table.
If the clustered index is on an identity column, you should almost certainly change it to "accounting_period" instead. This...
November 4, 2013 at 2:39 pm
Viewing 15 posts - 6,331 through 6,345 (of 7,616 total)