Forum Replies Created

Viewing 15 posts - 31,681 through 31,695 (of 39,819 total)

  • 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...

  • RE: Wide index

    It's the same as any other index, just with more columns. However, as Sergiy suggested, you might want to read up a little and better understand what you're going to...

  • RE: Recreate index

    If the problem is widespread, I don't see any great way to reorder them except by dropping and recreating.

    However, if you don't have many indexes, why not just add...

  • RE: The Other 90%

    Good for MSFT! Glad they have the domain.

    I think we're sidetracked off my original aim. Not so much that we give them a better editor or OS, but maybe there's...

  • RE: The Other 90%

    Very amusing from my Texas colleague above.

    And good points made. However the poorest 90% is a spectrum of people. Some have food and electricity. Some have clean water. I'm amazed...

  • RE: Help i am blond

    Can you post some sort of sample data that you'd want to see?

  • RE: SQL migration to Active Directory

    It's a security issue for the most part. Check logins and you might need to re-add the new groups (as new domains). IT might reach down into users, but I...

  • RE: Copy permissions for one login to another

    Scripting is the best bet, but you shouldn't use user permissions. Use roles.

    As you script things out, create a role on the new server and give it permissions and then...

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

    Will,

    Not really digging through too hard, but this line caught my eye

    OFF_COD between '0000' and '9999'

    Are there other values? This seems like a strange join condition. Can it be <...

Viewing 15 posts - 31,681 through 31,695 (of 39,819 total)