Viewing 14 posts - 1 through 14 (of 14 total)
I have encouraged our DBA team to get powershell installed (SQL 2005) - no luck yet. Meanwhile I use a procedure for each partitioning function. Here is an...
December 21, 2010 at 9:36 am
Not directly related to article - but - an alternative to spt_values:
create table #Number (number int);
with N4000 as (select 0 as Number union all select Number+1 from N4000 where Number...
December 6, 2010 at 8:06 am
Back to the idea that it is a firewall issue - I tried adding this before the open and still no luck (still getting null back).
EXEC @Result = sp_OAMethod...
May 19, 2010 at 1:56 pm
We think it might be some firewall rule - but here are some commands I tried:
EXEC spGeocode @Address = '1234 N. Main Street', @City = 'Santa Ana', @State = 'CA'
or
EXEC...
May 19, 2010 at 10:05 am
I implemented the code (including reconfigure for OLE auto and show advanced) and the procedure returns nulls - I used example address from article. I took the URL from...
May 19, 2010 at 9:50 am
One of the beauties of proxy and abstracting permissions for a job step is to not tie the step's requirements to the account running the job or the service the...
December 10, 2009 at 11:52 am
We use proxy account / credentials and assign this account to the Run As property on a job step. The job does not have to be run under the...
December 10, 2009 at 9:56 am
The extension hardening got a little harder trying to name file with xlsx extension.
When I change C# source to have xlsx extension the Excel file will not open. Granted...
December 8, 2009 at 9:47 am
I found this link helpful - but a better solution would be that the document generated be in Office 2007 format.
December 2, 2009 at 11:26 am
I tested it successfully with SQL 2005. Two questions / statements - When I double click on the xls file I get a message that the file you are...
December 2, 2009 at 10:51 am
Thank you for the article.
I implemented it with idea that I would include the source row's key field in the xml column - in this way one could look...
July 29, 2009 at 5:15 pm
I wish there were more responses from data warehouse applications. When I first started in DW environemt it was a mantra (supported/promoted by our architect and MS consultant) no...
May 8, 2008 at 11:07 pm
If the end goal isn't immediate row by row processing - don't forget about the SQL 2005 OUTPUT clause that can be used with INSERT, UPDATE and DELETE.
December 8, 2006 at 11:03 am
There should be caveats for these types of assertions. In a data warehouse you would experience significant performance penalties always using declarative referential integrity. In DW world it is the...
December 4, 2006 at 5:09 pm
Viewing 14 posts - 1 through 14 (of 14 total)