Forum Replies Created

Viewing 15 posts - 766 through 780 (of 1,048 total)

  • RE: xp_cmdshell disabled after reboot

    With 2008 you do it with "facets". Right click on the server instance in the SSMC and select facets......

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Cannot unmap login from db_owner role

    who is the database owner? That login was evidently mapped as dbo.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: How many DBA's per instance/Database

    Hmmmm. At this location I am the only DBA, but also am a .NET developer about 1/3 of the time as well.

    We have about 20 front line SQL servers, 3...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Sql server Service Broker

    These situations are similar to what you would encounter when multiple users attempt update to the same row on the same table on the same server except you have the...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: GUID behaviour?

    Okay, I understand your question now. It appears that the implicit conversion from (n)varchar() to uniqueidentifier involves only the first 32 valid hexadecimal characters and SQL server ignores the rest.

    That...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: How do you change the partitioning column of a table

    you'll need to create a new table and insert the date from the old one.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: GUID behaviour?

    I'm a bit confused by your sample TSQL code.

    The local variable @ID that you are initializing with what appears to be a comma separated string of UIDs would never be...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Query to find similar data from many other tables

    If I understand what you are saying, you want a list of ReportIds from all 100 tables that have a matching reportID row in the finalTable. If that is the...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Update "Case When" or anything like that

    How about this:

    update TBL set kPageName = '---'

    from yourTable TBL

    join (select (min(kPriority) as pri, kPageId from yourTable group by kPageID) LP

    ON TBL.kPageID = LP.kPageID and TBL.kPriority > LP.pri

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Running BCP from .Net 4 C# System.Diagnostics.Process

    Read this: http://msdn.microsoft.com/en-us/library/ms190919.aspx

    regarding ramification of using -c switch

    What I am implying is that a different codepage is in effect when it is run from the command line (shell) versus...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Running BCP from .Net 4 C# System.Diagnostics.Process

    try specifying a different value for the -C (codepage) option.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: max server memory

    How to interpret that also depends upon whether you are running in a 32 bit Vs. a 64 bit OS.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: BULK INSERT error handling

    I don't have an answer except to suggest that you use bcp utility instead. It provides for saving a detailed error message regarding the data issue that is failing.

    We use...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Post Migration SQL SERVER 2008 Issues

    how does the hardware of this new server compare to the old one? How much memory? How many drives? Is tempdb on its own drive array and have you set...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Sql server and sql agent wont start

    what does it say in the event log?

    The probability of survival is inversely proportional to the angle of arrival.

Viewing 15 posts - 766 through 780 (of 1,048 total)