Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: btturner
  • Order by date
  1. btturner

    Looking for SQL to Gen INDEX DDL

    Yes, by all means. I'd really appreciate the SQL-DMO VB knowledge - to generate INDEX DDL.
  2. btturner

    Looking for SQL to Gen INDEX DDL

    I am looking for some SQL to read the SQL Server Catalog and auto-gen DDL for Indexes? (joing sysindexes to sysobjects, etc) I don't just need the index name - I need the entire set of DDL for a given index. To be used to reCREATE indexes after I drop them and load a db w/ data. thanks for...
  3. btturner

    DTS Audit Task Failure: Automation Type Not Supported in VBScript

    problem resided in that I was attempting an INSERT into a row into a table w/ an identity column. My global variable was set to 1 - causing a failure. I reseeded the identity column table def to zero and the INSERT worked.
  4. btturner

    Auto-Generate DDL from Catalog

    Does anyone have SQL which will auto-generate CREATE INDEX DDL using SQL's Catalog as it's data source? (I do NOT want to manually create the DDL using Enterprise Manager generate sql script) I have the need to DROP Indexes prior to loading large volumes of data. Then, dynamically recreating...
  5. btturner

    DTS Audit Task Failure: Automation Type Not Supported in VBScript

    Receiving error message during the exection of my DTS Audit Task: "Variable uses an automation type not supported in VBScript" This Audit Task worked fine at my last client site (sourced directly from the SQL Server 2000 DTS Book from WROX) Here is the script - failing on line 55 (Note: I've...
  6. btturner

    Automated SQL Script Generator

    Anyone know of a product / utility which will allow a user to selectively create SQL Scripts to build SQL objects? Our development team architect wants the capability to dynamically select any object (table, view, sp, etc) and generate script to be dynamically imbedded in his nitely deployment...
  7. btturner

    Replication Dist Agent "RUN" Iterative Retry

    Experiencing a single table / single row Transactional Replication burp (processes & source/target DB's are in sync and operational) Details - under our Rep Monitor Agents / Distribution Agent I see: {CALL sp_MSins_tblMbrAssignments (2668927, 546264, 1, N'546264', 2004-12-21 00:00:00.000...
  8. btturner

    Restoring an SQL Database to a different server

    From source server/db query analyzer: >> BACKUP DATABASE your_dbname TO DISK='c:\your_dbname.bak' From target server/master db query analyzer: >> RESTORE DATABASE your_dbname FROM DISK='c:\your_dbname.bak' WITH RECOVERY, REPLACE
  9. btturner

    SQL Server Agent Red Cirlce

    Within SQL 2000 Enterprise Manager, under Management I see the started (green arrow) SQL Server Agent icon w/ a small red circle (looks like a clock) over it. What does this indicate?
  10. btturner

    Table Space Allocation & Usage Proc

    --Declare/Open/Fetch/Close/Deallocate CURSOR sample declare @UserTableName nvarchar(40) declare UserTableSize cursor for select rtrim(name) from dbo.sysobjects where OBJECTPROPERTY(id, N'IsUserTable') = 1 order by name open UserTableSize fetch next from UserTableSize into @UserTableName while...
  11. btturner

    Table Space Allocation & Usage Proc

    Need a suggestion (or prewritten proc/sql) to render all table names and their corresponding space allocations and usage for tables in a given Database. This renders all user table info: select * from dbo.sysobjects where OBJECTPROPERTY(id, N'IsUserTable') = 1 order by name Does anyone have...
  12. btturner

    Owner prefix on Stored Procs

    - Have a UserID "FRED". - FRED registered SQL Server XYZ using SQL Server Authentication (specifying his UserID and PWD) - FRED is DBO on WIDGETS DB. - Whenever FRED creates a stored proc, the OWNER is showing up as FRED - FRED can create procs w/ DBO. prefix but the OWNER remains as FRED and...
  13. btturner

    SQL Profiler Event to track SQL statement

    /* SQL Profiler setup - Start SQL Profiler and from FILE menu select NEW and then select TRACE. You will be prompted to provide the information about the SQL Server you want to monitor. Select server name, fill out login and password fields and then click OK. - On the new screen...
  14. btturner

    SQL Profiler Event to track SQL statement

    Need a recommendation on SQL Profiler. I have a user stating he has a poor performing BIZTALK query. Generically asking, how can I capture the query? What SQL Profiler EVENT(s) (eg. TSQL, Transactions, etc) should I specify? What SQL Profiler DATA COLUMN(s) (eg. DatabaseID, etc)should I...
  15. btturner

    Does DBCC REINDEX "LOCK" the table

    In SQL Server 2000 (sp3), does DBCC REINDEX physically LOCK the table? One DBA tells me it does, the other DBA tells me you can still execute queries against a table being REINDEXed.
  16. btturner

    Snapshot Replication and IDENTITY columns

    For Snapshot Replication of source (PUBLISHED) tables containing IDENTITY columns, do I need to proactively do "anything" to ensure the propagation of these columns contents as is? In this table of 3 rows (ID values = 1,2,3) CREATE TABLE [dbo].[Application] ( [ID] [int] IDENTITY (1, 1) NOT...
  17. btturner

    Copy SQL Server Objects Task Ignoring my Selections

    I removed the COPY DATA check.. and built all my objects - then went back in and "only" preformed a COPY DATA.
  18. btturner

    Copy SQL Server Objects Task Ignoring my Selections

    My SQL 2000 DTS "Copy SQL Server Objects task" is loading tables I've deselected on the SELECT OBJECTS screen (NOTE: there are no dependencies between the objects I've UNchecked and the remainning objects) Characteristics of the Task "Copy" tab: SELECTED: Create destination objects, Drop...
  19. btturner

    Backup & Replicat Databases

    BACKUP DATABASE PlantData TO DISK='e:\PlantData.bak' --then RESTORE DATABASE PlantData2001 FROM DISK='e:\PlantData.bak' WITH RECOVERY --or Try using the DTS 'COPY SQL OBJECTS TASK'
  20. btturner

    SHRINK DB thoughts?

    Thoughts on the following: My SHRINKFILE on a Reporting DB consisting of 187 GB allocated, 100 GB used -- is taking several hours. I recently learned that after I restore the Reporting DB (from a prod DB backup) I can DROP 2 very large tables in the Reporting DB (occupying upwards of 80% of...

Part and Inventory Search

Back
Top