Viewing 15 posts - 826 through 840 (of 1,048 total)
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...
July 21, 2010 at 8:27 am
Wow, pretty impressive. I never considered doing something like that in that way. Thanks for the post.
July 21, 2010 at 7:25 am
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...
July 20, 2010 at 7:46 am
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...
July 19, 2010 at 10:22 am
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...
July 19, 2010 at 8:44 am
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...
July 14, 2010 at 2:13 pm
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...
July 14, 2010 at 11:59 am
Use try - catch
July 13, 2010 at 8:27 am
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.
July 8, 2010 at 2:27 pm
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....
July 8, 2010 at 1:52 pm
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.
July 8, 2010 at 1:07 pm
July 8, 2010 at 1:06 pm
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...
July 8, 2010 at 12:03 pm
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...
July 8, 2010 at 11:31 am
Viewing 15 posts - 826 through 840 (of 1,048 total)