Forum Replies Created

Viewing 15 posts - 1,411 through 1,425 (of 2,010 total)

  • RE: Performance impact of using functions in a join

    Me too. The computed column will have some overhead to maintain the index and such so Lynn's way could be faster, I've no idea as I don't have a...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: Converting Access SQL to MS SQL Problem

    The original syntax didn't work? What error did it give? Have a look at Jeff's excellent article on fixing updates here. http://www.sqlservercentral.com/articles/Performance+Tuning/62278/

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: TempDB

    Sure, that could be a good starting point. You will just need to keep an eye on it. Once it gets to a place where it doesn't seem...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: SQL 2000 Cannot login!

    So you were able to log in via QA and now you can't? No changes since you were last able to log in? Anything in the Security or...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: Cant' connect to SQLEXPRESS after vundo

    netstat can be useful when looking at the ports. Start|Run|cmd Enter. netstat -a Look for your SQL Server port to be listening.

    You can check to see if the...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: Performance impact of using functions in a join

    sorry I didn't mean calculated column, I meant Computed column... But basiocally that's the gist of it. Technet can go through it a lot more thoroughly than I.

    You...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: SQL 2000 Cannot login!

    Is your server set to only integrated or mixed mode auth? If it's not Mixed Mode the SA won't help, although you can go into the registry and change...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: Cant' connect to SQLEXPRESS after vundo

    Any chance the bad guys changed your password and aren't letting you in or worse?

    IS the service running

    Is the port open?

    What does SQL Configuration Manager show?

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: TempDB

    If you didn't change it from the default then your tempdb recovery model is set to simple. If this is the case then there really is no reason to...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: Performance impact of using functions in a join

    In a word YES. Anytime you are using functions such as that on one side of the join it will most likely disallow index usage on that side. ...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: Best way to access a SQL2k db from an Web server and keep it secure?

    You might be better off talking to someone in your local area who you can bring in asw a consultant to make sure you're not violating any HIPPA rules or...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: TempDB

    Did you review the link I posted? Some times things take more space than autogrow will allow. The db won't autogrow twice for the same transaction. It...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: Converting Access SQL to MS SQL Problem

    Yes it doesn't look like an inner join to me either. Looks more like a cross join, or mayhap I'm just reading it wrong.

    what do you think it's supposed...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: TempDB

    yes it can be changed without restarting your SQL service.

    Look up the Alter Database Command in Books Online.

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: Random rows

    Just select your top 5 percent rows and order by NEWID()

    To help us help you read this[/url]For better help with performance problems please read this[/url]

Viewing 15 posts - 1,411 through 1,425 (of 2,010 total)