Forum Replies Created

Viewing 15 posts - 256 through 270 (of 560 total)

  • RE: Standalone to Cluster

    ntrovato (6/10/2014)


    Quite honestly, most of these decisions were already made before I started on this project ... so I'm pretty much stuck with this solution and I need to run...

  • RE: Join on different data types

    ChrisM@Work (6/11/2014)


    CREATE TABLE #temp (colint INT, colvarchar VARCHAR(10), colcomputed AS CAST(colvarchar AS INT))

    INSERT INTO #temp (colint, colvarchar) SELECT 1, '10'

    SELECT * FROM #temp

    CREATE INDEX ix_colcomputed ON #temp (colcomputed)

    SELECT colcomputed FROM...

  • RE: Running SQL Services with a domain account from a different domain

    kingrudedog (6/9/2014)


    If the proper trusts are in place - are there any pitfalls to doing this?

    Parent company wants us to use service account from their domain (without moving the server...

  • RE: TempDB properties are not accessible

    What do you get when you run sp_helpdb 'tempdb' ? Is this a Cluster?

  • RE: Duplicate key issue ... again ... and again ...

    SQL is delicious (6/10/2014)


    sql-lover (6/9/2014)


    thomaswoof (6/9/2014)


    I'm having the exact same problem. The table had at some point been reseeded while importing data from the old version of the...

  • RE: Issue with multiple mirrored databases after failover

    serge 83317 (5/17/2014)


    We have two instances running in mirrored configuration. Two databases are being used by the same web application.

    In the case a failover occurs on one of these databases,...

  • RE: Duplicate key issue ... again ... and again ...

    thomaswoof (6/9/2014)


    I'm having the exact same problem. The table had at some point been reseeded while importing data from the old version of the software. So apparently...

  • RE: SQL server DB migratioon

    vijay.singh 14112 (6/9/2014)


    Hi Experts,

    Can we upgrade SQL server 2000 DB's to Sql server 2012 directly? I tried restoring 2000 .bak in 2008 R2 but i am getting compatible errors. Should...

  • RE: Delete from Multiple tables

    ramana3327 (6/9/2014)


    Hi,

    My requirement is before inserting new data, we need to delete the old data based on the input in 4 tables.

    For this one I need to write 4 individual...

  • RE: Capture Database Sizes Table with Date

    Here is mine ...

    DECLARE @total int, @id int, @dbname varchar(200), @sql varchar(MAX)

    DECLARE @t table(ID int not null identity(1,1), name varchar(255))

    INSERT INTO @t(name)

    SELECT name FROM sys.databases WHERE database_id >...

  • RE: Shrink runs forever

    Jeff Moden (6/6/2014)


    TheSQLGuru (6/6/2014)


    Wow - all that for 30GB of space?!? Sad to be worried about so little in today's age! :w00t:

    I've found that, especially in small to midsized...

  • RE: Indexing tips for MIN() and MAX() in queries

    sqldriver (6/6/2014)


    sql-lover (6/6/2014)


    It is my understanding that an aggregate function has to check all values in the column. So an Index on that attribute may not help too much.

    Now, not...

  • RE: WITH(NOLUCK)

    MyDoggieJessie (6/6/2014)


    What's a performance review? :hehe:

    The one that your supervisor does on you every year? To check if you are doing "Index Seeks" or just "scans" at your job? lol...

  • RE: Indexing tips for MIN() and MAX() in queries

    It is my understanding that an aggregate function has to check all values in the column. So an Index on that attribute may not help too much.

    Now, not sure how...

  • RE: WITH(NOLUCK)

    sqldriver (6/5/2014)


    hisakimatama (6/5/2014)


    Yep, I've had that problem. Found NOLOCK all over the coding in the vendor-provided software at my current workplace my second day there, and reported it to...

Viewing 15 posts - 256 through 270 (of 560 total)