Viewing 11 posts - 1 through 11 (of 11 total)
Hi
This works for me... whip off the day name, and the ordinal bit of the day of month, then simply convert what's left to smalldatetime. I've avoided generic patindex use...
February 28, 2013 at 4:35 am
I knew by suggesting it that a few eyebrows would probably be raised!
Thanks Sean, for adding the links to further info about the nolock hint... as it happens,...
December 18, 2012 at 9:20 am
I'd investigate adding the "with(nolock)" hint to your query - it doesn't involve killing processes, and it might solve your problem if it's being caused by an errant lock -...
December 18, 2012 at 7:39 am
Hi, it's all possible...
Each time you call the PivotTableWizard it adds a new sheet (with a new pivottable on it), so if you want the pivot to appear on...
May 22, 2012 at 2:26 am
Hi,
I think this is because the line expects your "Data" worksheet to be Sheet1 in the excel project - changing "Sheet1.CreatePivotTable" to "ActiveWorkbook.Sheets("Data").CreatePivotTable" should resolve the issue, by making...
May 21, 2012 at 2:44 am
Hi,
This should work for you...
In your excel file, insert the following Names:
Range("B5") = Application
Range("B6") = Build
Then, in your file as I can see it (in the screenshot), delete...
May 18, 2012 at 5:01 am
Hi,
Polkadot, I think we're both at risk of being lambasted by the "sql-only gurus" :unsure: - if so, before that starts 😀 let me say that the...
May 17, 2012 at 8:48 am
Hey Polkadot,
I have an excel VBA based reporting tool that does what you need - accepts user parameters, fires off a query to a sql database, gets a recordset...
May 16, 2012 at 4:40 am
Hi Dev,
it would also be feasible to use SSIS (or something else) to automate the whole sqlplus->txt->bcp approach 😀 This is what I did (the something else option -...
April 26, 2012 at 3:30 am
Hi,
I've had to do something similar before - numerous oracle tables, some with millions of records, others with just a few... all with a "last-update-date-time-stamp" field allowing selection of only...
April 25, 2012 at 3:15 am
Viewing 11 posts - 1 through 11 (of 11 total)