Viewing 15 posts - 19,951 through 19,965 (of 26,484 total)
Can you run the differential backup manually from SSMS?
July 6, 2009 at 3:07 pm
I don't think any further responses are necessary here, but here is an "interesting" omg moment.
July 6, 2009 at 3:02 pm
You could look at using Partitioned Views. Basically, you create a table for each year then build a view over the tables. You will find more information regarding...
July 6, 2009 at 2:58 pm
Why do you want to do this?
July 6, 2009 at 2:50 pm
yesso (7/6/2009)
July 6, 2009 at 2:48 pm
A good reason for the OP to be a bit more professional and expalin what the problem is instead of ranting about how much the site s****.
July 6, 2009 at 1:01 pm
Not sure as I am not using SQL Server 2008 (yet) and we currently aren't using SQLCLR, but it is possible that some of the internal processes may be using...
July 6, 2009 at 12:43 pm
arthykannan (7/6/2009)
July 6, 2009 at 12:35 pm
SCHEMA_NAME was added in SQL Server 2005. I don't know off-hand what you would use as a replacement in SQL Server 2000.
July 6, 2009 at 12:14 pm
Edward (7/6/2009)
1 the cursor selects only distinct ID's
2 each steps it selects from a different table using...
July 6, 2009 at 10:01 am
Like this:
declare @ADateTime smalldatetime;
set @ADateTime = '2009-07-05 09:00:00';
select @ADateTime, year(@ADateTime);
You may want to spend some time reading Books Online (BOL, the SQL Server Help System that may be accessed from...
July 6, 2009 at 9:58 am
This?
declare @TestInt int;
set @TestInt = 425699;
select cast(@TestInt/100.00 as decimal(10,2);
July 6, 2009 at 9:52 am
There really isn't enough information to provide a really good answer. Could you provide the DDL for the table(s) involved, sample data (in a readily consummable format that can...
July 6, 2009 at 9:46 am
It isn't a stupid question at all. the problem I see with it is that it is extremely broad and vague.
Perhaps you could provide more background information regrading what...
July 6, 2009 at 9:18 am
WayneS (7/6/2009)
Lynn Pettis (7/6/2009)
Mario Garcia (7/6/2009)
I have used a function to parse data. It can be altered some to fit your needs.
You may want to search this site a...
July 6, 2009 at 9:12 am
Viewing 15 posts - 19,951 through 19,965 (of 26,484 total)