Forum Replies Created

Viewing 15 posts - 361 through 375 (of 617 total)

  • RE: Updating 2 rows in table B based on 1 row from table A

    Since you are using SQL 2000 you will probably find this easier.

    UPDATE d_description SET RequestId = con.RequestId, FormId = Con.FormId,

    DescriptionId = CASE WHEN IdDescription =

    (SELECT MIN(IdDescription) FROM d_description d

    WHERE...

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

  • RE: Change Connection with T-SQL

    You could also add a GO after the use statement

    :connect MyServer

    use MyDB

    go

    sp_helptext spGetCustomer

    go

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

  • RE: "Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server conn "

    I'll try to get it written up as an article next week. In the mean time maybe you can answer another quick question. If I am going to...

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

  • RE: "Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server conn "

    I've actually been working on the "Double-Hop" problem for over a year now, even with help from someone else who had solved it. And I finally came down to...

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

  • RE: Enterprise version of SSIS & Standard Database Engine

    Its a full install of SQL Server Standard, including SSIS. Could it be the method we are using to call the package? IE DTEXEC instead of using a...

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

  • RE: Enterprise version of SSIS & Standard Database Engine

    Well I read the article but I'm not sure I understand it. How do you set a package to run "in process" I've seen in/out of process when...

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

  • RE: Enterprise version of SSIS & Standard Database Engine

    Ok I'm getting the following errors. Can any of you think another reason why I would be getting these? Other than needing an Enterprise version of SSIS that...

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

  • RE: Enterprise version of SSIS & Standard Database Engine

    Gift Peddie,

    That was actually why I was asking. I want the Enterprise version of SSIS so I can do the Advanced transform but don't want to upgrade the existing...

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

  • RE: SQL Server 2005 SP3

    I'm running SP2CU7 on most of my servers. Anyone have any opinions on what level is best to go to? CU9, 10, 11, SP3 or SP3 CU1? ...

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

  • RE: How to change Password from case-sensitive

    rgambill (10/8/2008)


    Can't you just set the Enforce Password Policy to off (uncheck it)? Assuming that you're using SQL authentication.

    Unfortunatly that just sets the rules for password creation. The password...

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

  • RE: DBCC DBREINDEX / DBCC SHRINKFILE

    RP_DBA,

    Thanks for the suggestion but I've tried TRUNCATE_ONLY. Unfortunately the defrag moves the data to the end of the file so TRUNCATE_ONLY doesn't do much.

    Gila,

    I have around 80gig...

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

  • RE: INSERT script errors *** Gurus help needed ***

    You are missing a ) at the end of the line.

    You have your closing paran for the CONVERT but not for the VALUES on the insert. It should look...

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

  • RE: Has anyone written any interactive SSIS packages?

    That's basically the path I'm taking at the moment. I'm buliding in a "BatchMode" that turns off the interactive part so that we can pass in the variables.

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

  • RE: Has anyone written any interactive SSIS packages?

    Its used by DBAs only who run it interactivly. It is a set of 2 packages although the interactive part is all in 1 package. It's mostly a...

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

  • RE: Problem setting up linked server

    Unfortunatly same subnet, different IP addresses. Also same TNS files. We copied them from the working server.

    Any other suggestions?

    Thanks for the help BTW

    Kenneth

    Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]

Viewing 15 posts - 361 through 375 (of 617 total)