Forum Replies Created

Viewing 15 posts - 931 through 945 (of 1,048 total)

  • RE: Sql Server Information

    some of the things you want are in global variables (@@servername, @@servicename, @@version). Others you'd have to use xp_regread to obtain. The IP you already know if you can connect...

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

  • RE: varbinary(max) and NOLOCK in SQL 2008

    what the nolock hint does is tell SQL server you will accept uncommitted data. If the application doing the select truly doesn't care whether the data is accurate AND using...

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

  • RE: IIS7 & SQL 2008 Communication

    There is nothing inherently wrong with using SQL Server logins that way, for a smaller controlled group of users. You must manage all of the these users and their passwords...

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

  • RE: General Question: Making a Automated Phone Call from SQL Server

    I am not aware of any built in facility to make a phone call from SQL Server. However if I wanted to do it I'd probably write a .net assembly...

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

  • RE: Can't delete secondary db file

    I am not aware of a way to do this other than creating a new table having the same structure as the old one. Specify the desired file groups you...

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

  • RE: MS SQL Server 2008 Full Text Engine

    run configuration manager and disable the service.

    Dumb me, you had already done that. If it was an option on installation try running the install again to remove that component...

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

  • RE: IIS7 & SQL 2008 Communication

    Yes using SQL Server authentication. I assume the application can be configured in some way for a user and password to set up its connection strings.

    Take the time to...

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

  • RE: LIKE operation with non-english characters

    yes.

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

  • RE: Should I pre-create all needed partitions/filegroups/files?

    pre-configuring like that will reduce external fragmentation which occurs when other file-groups or applications are competing for disk space on the same physical drive.

    This results in better performance on all...

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

  • RE: Win 2k8 Server 64bit - Named (System Wide) Semaphores - SQL Server 2k8

    How do you have the execution context of the xp_cmdshell set up? Are you using a proxy or is it running in the context of the SQLServer service user (generally...

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

  • RE: Any performance issues Using @@trancount in Try and Catch methods

    I believe for your purposes here they are equivalent, however it is better to use xact_state() for reasons I won't elaborate on.

    It doesn't matter which one or how many of...

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

  • RE: Any performance issues Using @@trancount in Try and Catch methods

    No, that's appropriate. However I would include the rollback in the preceeding "if" block like this:

    IF @@TRANCOUNT > 0

    begin

    -- error handling

    ROLLBACK -- no rollback if @@trancount =...

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

  • RE: My code

    it May be nice, but it would be even nicer if it was in a more concise and readable language like C#.

    but I digress...

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

  • RE: Export all tables to CSV, seperate files

    okay, for anyone interested the C# source is attached.

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

  • RE: Log Shipping

    MTY-1082557 (12/14/2009)


    Ok.. Im doing some testing and I force the primary server to have an error so I can bring to live my StandBy database

    Restore log [backup] FROM DISK 'c:\Logshipping\backup_20091214200600.trn'...

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

Viewing 15 posts - 931 through 945 (of 1,048 total)