Viewing 15 posts - 8,896 through 8,910 (of 13,876 total)
Ah, so you want to do the load in 4-hour batches – in a loop?
December 1, 2014 at 2:35 am
Use a query as the source for your data (and not just a table).
select ...
from ...
where DateModified > dateadd(hour,-1,getdate())
December 1, 2014 at 2:11 am
Select DbName, LatestBackupDate = Max(BackupDate)
from table
group by DbName
November 29, 2014 at 9:13 am
river1 (11/27/2014)
When will SQL Server 2014 will be released to be installed in production.I mean, when will I have a version that I can trust to put in production?
Thanks
We have...
November 27, 2014 at 11:57 am
You're not the first, and won't be the last, to get caught by this.
MS should make all declarations of Varchar without size a syntax error, in my opinion.
November 27, 2014 at 5:08 am
why doesn't it meet the requirements / question?
He wants to have the content of the index itself or do I missunderstand the request?
Because I believe the poster was asking whether...
November 26, 2014 at 5:06 am
Uwe Ricken (11/26/2014)
you can use DBCC IND if you use SQL Server < 2012 or sys.dm_db_database_page_allocation for SQL Server >= 2012.
This will give you a list of allocated pages.
To...
November 26, 2014 at 4:22 am
It would be useful to know a bit more about the dbo.systemsequences table.
Does this hold 'next id for table x' values only, or is there more to it than that?...
November 26, 2014 at 12:11 am
Chris Harshman (11/25/2014)
SET FMTONLY OFF;
EXEC SomeProcedureNameHere;
does this method still work in SSIS 2012/2014? Microsoft says it...
November 25, 2014 at 11:46 am
I did three times the rebuttal
Sounds like a new dance move!!
Anyhow, I think we need to see the query which generated this error. I am suspecting that there's an implicit...
November 25, 2014 at 7:29 am
tmac3217 (11/25/2014)
[font="Courier...
November 25, 2014 at 6:44 am
English translation, anyone? 🙂
November 25, 2014 at 6:10 am
Actually, that reminds me.
Here is a quote from BOL:
Using SET ROWCOUNT will not affect DELETE, INSERT, and UPDATE statements in a future release of SQL Server. Avoid using SET ROWCOUNT...
November 25, 2014 at 1:27 am
Try comparing the execution plans for each. If they are the same, you have your answer.
November 25, 2014 at 12:26 am
OK, I think I understand what you want. But what is your question?
--Edit: Jack's on to something. Use an asynchronous Script Component for this.
November 24, 2014 at 11:54 am
Viewing 15 posts - 8,896 through 8,910 (of 13,876 total)