Viewing 15 posts - 8,896 through 8,910 (of 13,882 total)
BI_NewBie (12/2/2014)
Below is the way i am following :
1 Created three variable Query, Sdate, Edate
a. Query = SELECT * FROM Table where date<=...
December 2, 2014 at 12:35 am
select @variable
December 1, 2014 at 10:32 am
princessthedba (12/1/2014)
hostname last_backup
c ...
December 1, 2014 at 6:26 am
uravindarreddy (12/1/2014)
I am curious to know about how data is migrated?
The code can be changed but how the existing...
December 1, 2014 at 5:12 am
You are on the right track, it seems.
But you should note that the PK does not have to be clustered.
So you could easily convert your PK to nonclustered and introduce...
December 1, 2014 at 4:54 am
If so, you could use a FOR loop with an increment of 4 and use an expression to set your source SQL which references the loop variable in its WHERE...
December 1, 2014 at 2:39 am
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
Viewing 15 posts - 8,896 through 8,910 (of 13,882 total)