Viewing 15 posts - 3,811 through 3,825 (of 8,753 total)
Luis,
you might be chasing Red Herrings here, does this happen just after the full backups?
๐
March 18, 2016 at 2:35 pm
Eric M Russell (3/18/2016)
Eirikur Eiriksson (3/18/2016)
Luis Cazares (3/18/2016)
I haven't met a read-only database, so you could probably compare backups.
Easy enough, if differential backups are consistently 0 in content and no...
March 18, 2016 at 1:24 pm
Luis Cazares (3/18/2016)
I haven't met a read-only database, so you could probably compare backups.
Easy enough, if differential backups are consistently 0 in content and no connections are made to the...
March 18, 2016 at 11:54 am
mburbea (3/18/2016)
March 18, 2016 at 11:45 am
Here is a more complete example with some error handling and listing of the tables with the date extracted from the name.
๐
USE tempdb;
GO
SET NOCOUNT ON;
--http://www.sqlservercentral.com/Forums/FindPost1770476.aspx
-------------------------------
-- DATE SATAMP THE TABLE
-------------------------------
DECLARE @TABLE_NAME...
March 18, 2016 at 3:39 am
pbo71465 (3/17/2016)
I'm creating a file each day that is created as follows;
[/Select a,b,c, INTO dbo.MyResults from Table1 quote]
I would like to keep each days file so I need a...
March 18, 2016 at 1:16 am
Just added the string_split function to Jeff's harness and Ouch :pinch:, what a mess! Not only is it slower than anything else in the harness, the Lead() version comes second...
March 17, 2016 at 4:30 pm
Found this sample in my collection, probably posted it somewhere before, feel free to play around with it.
๐
USE TEEST;
GO
SET NOCOUNT ON;
/* DDL Audit table
--TRUNCATE TABLE dbo.TBL_TEST_DDL_AUDIT
*/
IF OBJECT_ID(N'dbo.TBL_TEST_DDL_AUDIT') IS NULL
BEGIN
CREATE...
March 17, 2016 at 8:27 am
Use DBCC PAGE to get the object I'd, then it is easy to find the table
๐
March 16, 2016 at 8:40 am
Eirikur Eiriksson (3/15/2016)
hoseam (3/15/2016)
DECLARE @TheDate DATE
IF @TheDate IS NULL
SET @TheDate = GETDATE()
SET @FileName = 'DailyAgentSales' + CONVERT(CHAR(8) ,@TheDate -1 ,112) + '.csv'
SET @Subject = 'Agent Sales -...
March 16, 2016 at 12:26 am
hoseam (3/15/2016)
DECLARE @TheDate DATE
IF @TheDate IS NULL
SET @TheDate = GETDATE()
SET @FileName = 'DailyAgentSales' + CONVERT(CHAR(8) ,@TheDate -1 ,112) + '.csv'
SET @Subject = 'Agent Sales - ' +...
March 15, 2016 at 12:58 am
Brandie Tarvin (3/14/2016)
Eirikur Eiriksson (3/12/2016)
Brandie Tarvin (3/11/2016)
What a wonderful day in the upgrade-hood...Sigh.
So many SSIS packages to upgrade. So. Many. PACKAGES! :crazy:
Baggages?
๐
๐
Still not sure if I like Data Tools...
March 14, 2016 at 11:48 pm
I think you are missing the Calculated Table. If you go to the Data View, Modeling, New Table and enter
DIM_DATE = CALENDAR(DATE(2016,1,1),DATE(2016,12,31)) it will produce a date table for the...
March 14, 2016 at 12:26 am
Are you using it as a measure/calculate table?
๐
March 13, 2016 at 1:39 pm
This should work, I have models using this so I wonder why it doesn't work in your case, your version certainly supports it.
๐
BTW: I normally use a similar function as...
March 13, 2016 at 7:58 am
Viewing 15 posts - 3,811 through 3,825 (of 8,753 total)