Viewing 15 posts - 10,471 through 10,485 (of 39,793 total)
Jeff Moden (10/14/2014)
October 14, 2014 at 7:23 am
Stewart "Arturius" Campbell (10/14/2014)
Good one, thanks SteveI prefer to avoid using query hints, only using them where absolutely necessary, and then only after serious thought...
The best practice, IMHO.
October 14, 2014 at 7:22 am
Good luck, and if things don't split, you'll be fine either way.
SQL Compare does a great job, and good luck with it.
Disclosure: I work for Red Gate, which makes SQL...
October 13, 2014 at 3:34 pm
You can use triggers on your tables. However I'd refactor my procs to add a second update (in the same transaction) that updates the audit table with values.
October 13, 2014 at 3:25 pm
select
lastname
, updateddate
from log
order by updateddate
is what you can do.
October 13, 2014 at 2:37 pm
No, your design is not off, but you should consider the case where I separate a mart or ODS from the ETL store or other DW. In that case, do...
October 13, 2014 at 2:36 pm
You cannot order a table. A table is a set of rows (tuples I think) and has no order.
ORDER BY is a function of data retrieval (SELECT), not storage.
October 13, 2014 at 9:25 am
Access works well for this if it's a limited number of people.
If not, you could do something like this: http://www.sqlservergeeks.com/sql-server-using-sql-server-reporting-services-to-manage-data/
October 13, 2014 at 9:24 am
Not sure. I wasn't sure how to frame this, but I've seen the concatenation question regularly, and sometimes with some aggregation or summary (like counting responses and listing them).
Denormalize responses...
October 13, 2014 at 9:21 am
No hurry. If you can get in weeks, that would be good. Months, people tend to forget about things.
October 13, 2014 at 9:02 am
Happy to help, but this really looks like a homework issue, and we prefer to help you once you've tried something, rather than giving you some answer.
A few hints. First,...
October 13, 2014 at 9:00 am
That's strange. If it was a default instance before, it still should be.
Have you restarted the host? Not that it matters, but just wondering. Otherwise, not sure why you're seeing...
October 13, 2014 at 8:56 am
Certainly things can (and probably should) change after installation. However, perhaps you should have some idea of what defaults you want. This is more the settings, am I using Filestream?...
October 13, 2014 at 8:41 am
No need to do anything. Nothing is being enforced by code
October 10, 2014 at 2:13 pm
Stefan Krzywicki (10/9/2014)
October 10, 2014 at 1:18 pm
Viewing 15 posts - 10,471 through 10,485 (of 39,793 total)