Forum Replies Created

Viewing 15 posts - 9,061 through 9,075 (of 9,701 total)

  • RE: Is this possible, select into on specified filegroup?

    Since SELECT INTO doesn't usually copy over indexes and modifying the default file group before & after a SELECT INTO could cause major problems later on (what if you forget...

  • RE: Syllabus for Beginners

    We're always happy to help.

    And remember, the only forbidden question on this site is "Why is the sky blue?" ... @=)

  • RE: The SQL * Wildcard

    Sounds like you got the job then. @=)

  • RE: The SQL * Wildcard

    Interesting note. In the Microsoft Self Paced Training kit for 70-441, the book says

    However, you cannot optimize all types of queries. For example, a query such as...

  • RE: SQL Server install & Database Tuning Advisor Tool

    Enterprise 32 bit (for the servers) and Developer 32 bit (for our local PCs).

  • RE: How to select arabic or english when column have both english and arabic?

    If the arabic script has no Roman/English characters in it, you should be able to use the following WHERE clause.

    WHERE MyColumn not like '[a-z]%'

    And if your collation is set up...

  • RE: xp_cmdshell problem

    Verify via the SQL Server Surface Area Configuration Tool that you have xp_cmdshell enabled on this server. Usually when something takes that long before returning an error, it's stuck...

  • RE: Compatibility Level 90

    You can't downgrade a DB to SQL 2000, but you can script out all the objects, recreate them in SQL 2000, move some of the data (top 1000 or 5000...

  • RE: Report Script...

    I can't give you actual monitoring scripts because I didn't write some of them and I don't have permissions to hand the ones I didn't create. Also, you can...

  • RE: Syllabus for Beginners

    BOL also has some good tutorials. And if you don't have access to SQL Server at the moment, you can either download the eval version of 2k5 or (recommended)...

  • RE: I got a job but .....

    And save all your T-SQL scripts! You'd be amazed at how handy that comes in 6 months down the road when you need to replicate that "one time" job.

  • RE: Max Server Memory setting and actual memory use

    Dennis,

    The best way to see what SQL process are using up the memory is go into System Monitor and choose the regular OS memory counters as well as whatever SQL...

  • RE: MCITP

    You should also check out the Certification Forum on this site to see what other people have posted about these exams.

  • RE: SSRS - Specifying Test db and live db connections

    I've done it where I've had multiple data sources in the report, then just edited the DataSets right after Testing so that it pointed to the proper data source when...

  • RE: My new company uses SQL Server 2005....

    SQL 2k5 has a whole bunch of new system catalog views that help you identify unused indexes, etc. Check out "sys.dm_db_index" in BOL. This will get you to the...

Viewing 15 posts - 9,061 through 9,075 (of 9,701 total)