Forum Replies Created

Viewing 15 posts - 39,991 through 40,005 (of 49,571 total)

  • RE: Challenging SQL interview questions

    Paul White (4/5/2009)


    RBarryYoung (4/4/2009)


    Why would our helping you to get a job that you are apparently unqualified for be a good thing?

    Why would your being rude to someone you have...

  • RE: How to return a "start of group" column?

    One thing I will suggest, if this does have to be done on the DB. Put an order by in place. As it currently stands, there's no guarantee that the...

  • RE: just

    I do know, but I'm curious. Why do you want to set the server's time through SQL? That should be something that's done maybe once, by the server admin. If...

  • RE: How to return a "start of group" column?

    Generally this is more appropriately done on the front end, as it's usually a formatting/display issue.

    While Florian's solution works very nicely, in relational terms, the resulting rowset has three...

  • RE: just

    Not using T-SQL. To do that you'd need to use xp_cmdshell and issue OS commands

  • RE: dbcc checkcatalog

    Most likely someone's been directly updating the system tables after configuring the server to allow updates to them. This is the usual kind of mess that results from someone doing...

  • RE: dbcc checkcatalog

    Please post SQL 2000-related questions in the SQL 2000 forums in the future. If you post in the 2005 forums, you're very likely to get 2005-specific solutions.

    What's the results from...

  • RE: .mdf and .ldf gets deleted

    randhirdadwal (4/3/2009)


    .mdf and .ldf gets deleted. Services were stopped and .mdf and .ldf gets deleted.

    Any idea who did that? There should be entries in the application event log and they...

  • RE: Can we have a primary key on one column and clustered index on other column of the same table?

    You can also create the primary key as a nonclustered index and then create the cluster elsewhere.

    ALTER TABLE .. ADD CONSTRAINT ... PRIMARY KEY NONCLUSTERED

  • RE: dbcc checkcatalog

    Is this still a SQL 2000 server or has it been upgraded to a SQL 2005 server?

    It's an important question that needs an answer. The methods of fixing are very...

  • RE: Can we take a transaction log backup in simple recovery model?

    randhirdadwal (4/3/2009)


    I have tried doing that and I was able to take a transactional log backup only using the option with with truncate only.

    Backup log with truncate only means truncate...

  • RE: Timed Triggers.. Possible ???

    Interview question?

    Triggers fire when a change happens to a table. That's it. If you want scheduling, try SQL Agent.

  • RE: Performance of user defined functions

    Torres (4/3/2009)


    I assumed this was a common option with most udfs. Or not?

    Well, there's two different types of table valued udf, and they follow completely different rules.

    The inline table valued...

  • RE: need help with consistent database corruption

    Paul Randal (4/3/2009)


    Gail (and others) - once a database is upgraded and checksums are enabled, torn-page protection is still in place until a page is subsequently changed

    I'm just surprised that...

  • RE: Next Step after 70-431

    You're looking for the MCITP certifications. There are two, one for dev, one for admin

    http://www.microsoft.com/learning/mcp/certifications.mspx

Viewing 15 posts - 39,991 through 40,005 (of 49,571 total)