Forum Replies Created

Viewing 15 posts - 1,861 through 1,875 (of 2,010 total)

  • RE: Transaction log backup script

    since I apparently took too long posting my original answer and the page timed out you're goign to get a short sweet and to the point one.  I compact my...

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

  • RE: Disk Configuration/Raid?

    How is performance on your current server?  Good, bad, ugly?  Given the 2 optiosn you list I'd suggest option 2, becasue it doesn't look like option one has any redundancy...

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

  • RE: SQL Server Error 18456

    Or this may have some insights as well...

    http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=190160

     

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

  • RE: SQL Server Error 18456

    Have you granted the "users" group any acess to specific databases, tables, veiws etc?  will they only need read, or will them need CRUD access? 

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

  • RE: repeating rows for different years

    Is this what you're looking for???  Please excuse the formatting....

    CREATE TABLE #myTable(

    Key_m int IDENTITY NOT NULL,

    GeographicCode varchar(10) NULL,

    Year_census_estimate int NULL,

    Sex int  NULL,

    Age_start int NULL,

    Age_end int NULL,

    Person_count float(8) NULL,

    Age_range varchar(21)...

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

  • RE: DTS Error

    Have you set the task that is failing to run on the Main Package Thread?  I have seen this error thrown before and the solution I'd found on the web...

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

  • RE: Updating rows in table from Select query

    Is this what you're looking for?

     

    UPDATE #temp

    Set col3 = 'whatever', col4 = 'whatever2', col5 = 'number'

    WHERE col1 = 'A' and col2 = '101

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

  • RE: Transaction log backup script

    What I do is write to the local machine and then in the next step of the SQL Agent Job I copy it out to my network location.  I've found...

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

  • RE: working opensql query from a linked db

    Theoretically the SELECT INTO Sytax should create the new table for you and then populate with whatever records you need.  Since you already know what columns should be in your...

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

  • RE: Converting Date/Time Format Using DTS

    Are you usign the copy table method or an SQL Query in the Source tab of your Data Transformation step?  Would it make sense to store the start time and...

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

  • RE: working opensql query from a linked db

    Alternantively if you really want to read through all of those signle quotes, you can still use your open query, but use a

    Select * INTO #mytable FROM OPENQUERY(...

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

  • RE: working opensql query from a linked db

    Why not just bring the data over with DTS.  It's much easier and you dont' have to worry about being in Single quote hell.  Just create a connection onject to...

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

  • RE: How to implement/switch everyone to a new server

    Depending on what kind of clients you have you may need to do this either in Wins or DNS or most likely BOTH.  Why not setup an alias that points...

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

  • RE: DTS lost copy table property

    Are both servers at the same Service pack/hotfix level?  I've never seen this particular problem but have had issues in the past when transfering DTS jobs and that was the...

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

  • RE: Reporting Services

    Take a look at this and see if it helps...

    http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=150&messageid=185005

     

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

Viewing 15 posts - 1,861 through 1,875 (of 2,010 total)