Viewing 15 posts - 1 through 15 (of 175 total)
September 29, 2010 at 2:47 pm
I don't believe this is possible. Even when calling SQLMaint utility directly it doesn't seem that this can be done.
http://msdn.microsoft.com/en-us/library/ms162827.aspx
You could possibly do some post-processing after the maintenance...
September 29, 2010 at 2:25 pm
>>I can't pick and choose what tables to restore from a backup, correct?
I believe third party tools can do this. For example with HyperBac you can run your test...
September 14, 2010 at 2:31 pm
You have to pre-process the file outside of SQL Server. Search for 'convert pdf csv' and there may be some options. Once you have a csv file all the normal...
September 14, 2010 at 11:02 am
How big is the file likely to be, roughly?
Less than a mb and I only need to process monthly so performance is not an issue. I have complained to...
September 8, 2010 at 9:13 am
How about pre-processing the file? Just replace "" with ' (for example) and then continue with , as column delimiter and " as text qualifier as you feed the file...
September 7, 2010 at 12:58 pm
Even if the backup says successful you really don't know for sure until you can successfully restore it.
After you get through this first step you may want to consider an...
September 7, 2010 at 11:37 am
I am not very familiar with OPENROWSET BULK.
I also should have mentioned that not every record would have embedded quotes. The following would be more representative.
"A","Is this a ""valid"" file...
September 7, 2010 at 11:29 am
You could also export to csv and then open the csv file in Excel.
September 2, 2010 at 9:23 am
Maybe the default trace can provide additional info.
August 31, 2010 at 2:26 pm
May also be a security issue. Can you run the package directly from SSMS or does this prompt for a password?
Export the package to dtsx file format. Open in a...
August 27, 2010 at 12:10 pm
Try explicitly setting the server name.
/SERVER "SERVERNANE\INSTANCENAME"
August 27, 2010 at 11:59 am
This may be an authentication error as the error message indicates. To test firewall and port issues use ping and telnet.
http://www.outlookpower.com/issues/issue200506/00001576001.html
If you can telnet to the server port...
August 27, 2010 at 9:42 am
[SummaryMonth] [datetime] NOT NULL
[REP_ATTUID] [nvarchar] (10) NULL,
[CM_ATTUID] [nvarchar] (10) NULL,
[SM_ATTUID] [nvarchar] (10) NULL,
[GM_ATTUID] [nvarchar] (10) NULL,
[VP_ATTUID] [nvarchar] (10) NULL
This needs work. What are you going to do when you have...
August 26, 2010 at 3:01 pm
More of a logical/business requirement than a traditional database constraint unless check constraints can perform complex checking way beyond > 100. There seems to be some branching logic going on.
Perhaps...
August 25, 2010 at 4:00 pm
Viewing 15 posts - 1 through 15 (of 175 total)