Forum Replies Created

Viewing 15 posts - 12,136 through 12,150 (of 14,953 total)

  • RE: Problems with SQL SP2 Installation

    I'm not sure I follow you completely.

    It sounds like you have two instances of SQL Server on one computer. You are trying to upgrade one of the instances to...

  • RE: Server is very slow

    I'd start by finding out what queries are slow, then find out why. More often than not, that's the problem. Run a trace if you don't know which...

  • RE: Active Running SQL Statements

    Look up "Dynamic Management Views and Functions" in Books Online, you'll find what SQL 2005 has for that kind of thing.

    For example, sys.dm_exec_connections, will give you data about the connections...

  • RE: Source control approaches with db objects

    You're definitely on the right path.

    One thing you might want to look in to is DDL triggers. They can track a lot of the change scripts, etc., and you...

  • RE: dynamic queries in sql

    Does the table you're querying have an ID column or some other primary key?

    If so, a union statement might be better than dynamic SQL for this.

  • RE: Debugger For SQL

    To simulate multiple users, I scheduled 10 jobs which ran the proc 1000 times each, all running at the same time. Run time averaged 46 milliseconds for each job....

  • RE: Debugger For SQL

    By going one step further, and setting the proc to take an XML input parameter:

    create proc [dbo].[ParamsTest4]

    (@DateList_in XML)

    as

    set nocount on;

    declare @Date datetime;

    ;with Dates (DateIn) as

    (select result.value('(i/@date)[1]','datetime')

    from

    (select t.c.query('.') as Result

    from...

  • RE: Debugger For SQL

    I finally got a chance to run a speed test on a proc that does it's own string-split, without calling a UDF.

    Same test as before:

    create proc [dbo].[ParamsTest3]

    (@DateList_in varchar(max))

    as

    set nocount on;

    declare...

  • RE: Backup SQL 2000 to network drive

    What I've had to do is create the backup on a local drive, then copy it to the network as a separate action.

  • RE: Workgroup edition with advanced SSIS transformations?????

    If running them in VS works for you, there's no reason not to do it.

  • RE: Recover single field from single table in copy of database using UPDATE...SET

    Assuming both databases are on the same server, but with different names, and the table has the same name in both copies, it will look something like this:

    update table

    set column...

  • RE: BULK UPDATES in 2005

    Yes. All other things being equal, the join version is immensely faster. The only time you might want to break it up (and you still wouldn't use a...

  • RE: Multiple references to same foreign table/column

    The idea of a many-to-many table is that you have one ID for the row in one table, one ID for the row in another table, and a many-to-many table...

  • RE: Foreign Keys - Index creation

    Generally, on a logging table, I don't create any indexes, constraints, defaults, etc. The whole idea is to make inserts into it as fast and efficient as possible. ...

  • RE: sql script for countries, states, cities

    http://www.zip-codes.com

    They issue monthly updates. It's $39.95 for a year of updates for the US. Multiple file formats available and all that.

Viewing 15 posts - 12,136 through 12,150 (of 14,953 total)