Forum Replies Created

Viewing 15 posts - 826 through 840 (of 1,048 total)

  • RE: TDE - Backup of service master key necessary?

    If you need to restore your databases to a new server you need to either have backups of the service master key or the DDL to recreate the Database master...

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

  • RE: A query to calculate the frequency

    Wow, pretty impressive. I never considered doing something like that in that way. Thanks for the post.

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

  • RE: Dirty data

    Best way is to make sure only clean data goes in. 😎

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

  • RE: CLR Problem

    I do something similar to this... hit a number of URLs and download various zipped files, move them to other servers and load them into different databases.

    I elected to take...

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

  • RE: CLR Problem

    Does the data from this URL have to be pulled on demand by a client doing a SQL query or is it something that occurs on a schedule or in...

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

  • RE: CLR Problem

    your C# code declares the function as static void, yet the function definition TSQL declares it as returning nvarchar(MAX).

    Having said that I'm not so sure what you are trying...

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

  • RE: Page split with Clustered index

    I can buy the fact that SQL Server might call each new page allocation a "split" even though it really isn't a page split in the true sense (i.e. an...

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

  • RE: Page split with Clustered index

    you could be seeing a few page splits due to the index maintenance. All indexes can incur splits as they grow.

    I suggest that after running this tsql code to load...

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

  • RE: How do i get restore succeed according to the code below?

    Use try - catch

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

  • RE: BCP command fails on SQL 2008

    What error code or error message are you getting? I could be failing for a dozen different reasons. Most likely connectivity or login credential issue if nothing else has changed.

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

  • RE: Importing Selected Rows into database

    I would write a little .NET program to do this... grab the file from the folder, pre-format/filter it as needed then bulk insert it into a database table or tables....

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

  • RE: Best Approach To Enable and Allow Use xp_cmdshell Non sysAdmin Users

    grant them execute on xp_fileexist

    execute xp_fileexist @pathToCheck, @status

    if @status = 0

    print 'Not There'

    Sorry for the double post, my keyboard glitches all the time.

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

  • RE: Best Approach To Enable and Allow Use xp_cmdshell Non sysAdmin Users

    grant them execute on xp_fileexist

    execute xp_fileexist @pathToCheck, @status

    if @status = 0

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

  • RE: Disk I/O and RAID Config

    Tara-1044200 (7/8/2010)


    shark, i agree with you but its turns out to bev ery diffucult to make them understand.

    I find that it is easier to just shoot them when they act...

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

  • RE: Migration from a SQL Server 2000 to 2008

    You will need to back up your databases on the old server and restore them to the new server. There is no other way to migrate them. You should also...

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

Viewing 15 posts - 826 through 840 (of 1,048 total)