Forum Replies Created

Viewing 15 posts - 31,771 through 31,785 (of 39,917 total)

  • RE: The 18 Month Debate

    Wow, more responses than I expected.

    I think privacy is important. Maybe the definition of privacy needs to be changed and maybe our idea of what to expect should be altered,...

  • RE: Mass printing from fatabases?

    Have you looked at Reporting Services? It's free and easy.

    If you are scripting, and you have some code, I used to use Active Reports and it worked great.

  • RE: Referential Integrity Circles...

    Agree with Bob. Keep the RI, prevents errors with triggers as code changes.

  • RE: Database server

    Tend to agree with Erik's advice myself.

    I will say that some of the research from MS on very large DBs has been splitting off entire objects (data + indexes) into...

  • RE: The 18 Month Debate

    Good point. I hadn't thought about them trying to compete by removing Google's advantage, but it makes sense.

  • RE: One query is hogging my baby!!!

    If there are alpha codes, wouldn't "< '9999'" work? Alphas should order above that. Might help it slightly,

  • RE: Urgent: Installing SP4 on Server with REPL

    I believe it's distributor, publisher, subscriber order.

  • RE: dedicated CPU for a certain task.

    Some of this changes in SQL Server 2008 with resource governers that can limit work in other areas, but I don't think you can specify affinity for a specific process...

  • RE: Exclude Day from Scheduled Job

    And here I was going to give some fancy T-SQL to check and then fail the step if it was a Sat.

    Nice solution, sql_junkie!

  • RE: purge records

    You can trace the purge with Profiler and see if things are removed or moved. That would be handy to know.

    Indexes might need rebuilding to remove fragmentation in either case....

  • RE: Use of Inline views

    select e.empname, d.departmentname, '', ''

    from employee e inner join department d

    on e.emp_id = d.emp_id

    union

    select e.empname, d.departmentname, p.ssn, p.dob

    from employee e inner join department d

    on e.emp_id = d.emp_id

    inner join person...

  • RE: System stored procedures

    I like Markus' advice. It's a workaround and will get things moving. The other thing you can try is create the login yourself and then see if you can get...

  • RE: Should 64-bit SQL 2005 be considered for most installations vs. 32-bit?

    I think 64-bit will soon be the norm, so for new installations, upgrades, new servers, etc., I'd look at 64-bit. There are so many limitations with 32-bit, not the least...

  • RE: Help getting rid of sql default tables

    Wow, this has gotten a little crazy, so a few comments and I hope everyone calms down a bit. I wish I had seen this forum a little sooner and...

  • RE: advice on altering a table

    I tend to agree with Lowell that if you need a flexible design and might have changes, it makes some sense to add a "Breeders" table and link people to...

Viewing 15 posts - 31,771 through 31,785 (of 39,917 total)