Viewing 15 posts - 1 through 15 (of 45 total)
Disregard-I finally found it. Here's a sample statement:
DUMP DATABASE model
TO DISK = '\\[SERVERNAME]\[FOLDERLOCATION]\model_test.BAK'
WITH INIT
July 3, 2014 at 12:38 pm
I thought I would be the only one to say that being a database developer is both my hobby and job! I tinkered with databases in my previous career...
May 28, 2010 at 6:11 am
One of the things I do during development of a stored procedure that includes dynamic SQL is instead of executing the statement I PRINT (http://msdn.microsoft.com/en-us/library/ms176047.aspx) the statement. ...
May 20, 2010 at 6:54 am
The database's owner should actually be the SA account not dbo. To change the database owner use the following statement:
USE <DatabaseName>
exec sp_changedbowner @loginame = 'sa'
GO
May 15, 2010 at 5:33 pm
Another option, since you're using SSIS, is to create a Script Task, use the System.IO namespace, and delete the files that way.
May 15, 2010 at 5:24 pm
I would try creating a table function instead of a view since you want to pass parameters; there are some limitations on what can be done in a function:
April 30, 2010 at 10:54 pm
Amen, brother!!! That is why I quit going to conferences and other events (aside from SSUG's). I get a little tired of getting beaten by the Microsoft marketing...
April 6, 2010 at 6:25 am
I hope this answer is not too simplistic. A few questions first:
August 9, 2007 at 9:50 am
I agree. I would give them the database shell with no live data in it. If they need to they can create their own data.
July 30, 2007 at 6:42 am
I agree in that you need to name the database in a way that you can track. In the past I've seen companies name the database a series of...
July 19, 2007 at 10:12 am
Another option is to use ROBOCOPY, which ships with the Windows Server products (http://www.microsoft.com/technet/technetmag/issues/2006/11/UtilitySpotlight/). It has both GUI and command line options.
June 4, 2007 at 9:19 am
I've developed DTS packages that collected zip files from FTP sites and then unzipped to do the magic. I used WinZip (had to buy a copy). They have...
June 1, 2007 at 9:00 am
Viewing 15 posts - 1 through 15 (of 45 total)