Viewing 15 posts - 841 through 855 (of 1,193 total)
Douglas Osborne-229812 (8/8/2012)
I'm going to reboot, run
DBCC dbreindex ([tblInvoices])
UPDATE STATISTICS [tblInvoices] WITH FULLSCAN
And...
August 9, 2012 at 9:38 am
You'd need some way in Access to execute T-SQL (or equivalent) rather than calling a proc.
I don't use Access so I've no idea if it has that ability, sorry.
e.g. Create...
August 9, 2012 at 4:33 am
pdanes (8/9/2012)
SomewhereSomehow (8/9/2012)
And what about creating temp table outside of the SP, just with command create table directly?
You mean create a permanent table that would stay in the database? I...
August 9, 2012 at 4:08 am
The </customerrors> from that tutorial isn't right as far as I can tell!
Instead of
<system.web>
...
<customerrors mode="RemoteOnly" defaultRedirect="http://yourwebsite/Reports/Pages/test.html">
</customerrors>
...
</system.web>
Try:
<system.web>
...
<customerrors mode="RemoteOnly" defaultRedirect="http://yourwebsite/Reports/Pages/test.html" />
...
</system.web>
Cheers
August 9, 2012 at 3:47 am
Sounds like an interesting problem!
I might be oversimplifying this, but is the purpose of each step just to refine the selection criteria (i.e. your WHERE clause)?
If so, would it be...
August 9, 2012 at 2:51 am
Sean Lange (8/8/2012)
August 8, 2012 at 10:14 am
Not 100%, but I think selecting Overwrite on the option 'If Backup files exist:' implies FORMAT.
August 8, 2012 at 9:27 am
There's a bug which means SQL will continue to suggest the index, even after you've created it.
After you create the index, has the execution plan changed to use it?
Cheers
August 8, 2012 at 8:59 am
Stewart "Arturius" Campbell (8/7/2012)
That'll teach me to answer before my first cup of coffee....
Me too... 🙂
August 7, 2012 at 2:44 am
I think the OP means this:
SELECT CASE WHEN Col1 IS NULL THEN 0 ELSE Col1 END + CASE WHEN Col2 IS NULL THEN 0 ELSE Col2 END ?
SELECT ISNULL(Col1, 0)...
August 6, 2012 at 8:03 am
You'll need to do it in SQL unfortunately, returning NULL or 0 or 'None', whatever's appropriate.
Fixed data property is for keeping the data onscreen while scrolling.
August 6, 2012 at 8:00 am
Are you synchronising data and/or structure?
What is the purpose of the second server - High Availability, Disaster Recovery, Reporting, Test/Development?
Thanks
August 6, 2012 at 7:02 am
MS SQL implicitly casts a blank string into 1900-01-01 00:00:00 in datetime data type so you're a bit stuck there.
Not sure why the NULLs are a problem though in your...
August 6, 2012 at 5:35 am
dbasql79 (8/1/2012)
2000 would use Torn_page_detection to check IO level corruption. Better change it to Checksum.
+1
Do this before rebuilding the indexes - IIRC, checksums are only written when the data/index page...
August 3, 2012 at 10:17 am
Viewing 15 posts - 841 through 855 (of 1,193 total)