Viewing 15 posts - 736 through 750 (of 3,011 total)
This is a good illustration of why you should always run adhoc updates inside a transaction.
If you see the wrong number or rows updated, you can just roll it back....
August 26, 2011 at 10:50 am
shew (8/24/2011)
Perry Whittle (8/24/2011)
Snitz forum is a good way of creating an issues forum\tracker
Funny name. Never heard of it, but it looks very interesting. If I am reading http://forum.snitz.com/Forum/readme.htm correctly,...
August 25, 2011 at 10:08 am
Ninja's_RGR'us (8/22/2011)
Michael Valentine Jones (8/22/2011)
http://msdn.microsoft.com/en-us/library/ms143393(v=SQL.100).aspx
From:
SQL Server 2008 Enterprise Evaluation
To:
SQL Server 2008 Web
SQL Server 2008...
August 23, 2011 at 2:24 pm
paul_ramster (8/23/2011)
The only assumption that is made is that you know a Monday, which in your case...
August 23, 2011 at 9:03 am
According to this link, all of the following upgrades are supported for both x86 and x64:
http://msdn.microsoft.com/en-us/library/ms143393(v=SQL.100).aspx
From:
SQL Server 2008 Enterprise Evaluation
To:
SQL Server 2008 Web
SQL Server 2008 Workgroup
SQL Server 2008 Standard
SQL...
August 22, 2011 at 8:40 am
Timothy Batts (8/19/2011)
August 19, 2011 at 2:33 pm
The code to find the first Monday of the year is fairly simple:
First find the 7th day of the year (Jan 7):
dateadd(yy,datediff(yy,0,a.DT),6)
and then find the Monday on or before that...
August 19, 2011 at 12:50 pm
Have you double checked to make sure the backup job is being executed in the context of the service account, and not some user account that doesn't have access to...
August 18, 2011 at 8:45 am
Try changing this:
exec @proc @objname =
@TABLE_NAME ,@updateusage = 'true'
to this:
exec @proc @objname =
@TABLE_NAME ,@updateusage = 'false'
You won't have updated usage numbers, but the output should be reasonably accurate.
You...
August 18, 2011 at 8:34 am
You should consider moving to SQL Server 2008 (or R2) Enterprise Edition to be able to implement native backup compression, compression of the large tables in the database, and partitioning...
August 17, 2011 at 12:07 pm
I think xp_cmdshell can be used securely if you take the trouble to set it up correctly.
The one thing that I don't like is that you basically have two levels...
August 17, 2011 at 9:51 am
Evil Kraig F (8/15/2011)
Jeff Moden (8/15/2011)
You might want to check again... what happens on May 31st?
I'm confused here Jeff, nothing bad happens on May 31 + 3 months. August...
August 16, 2011 at 11:31 am
temitaio (8/16/2011)
I am not trying to assign values to the columns, just trying to ensure the values of the columns = 0 (i.e. false) if InformationRestricted is True
Your check constraint...
August 16, 2011 at 11:23 am
GSquared (8/15/2011)
...Assertion in an interview that threw me, "We have a lot of mission critical data, but it's okay to lose a day's worth of it because it would be...
August 15, 2011 at 2:16 pm
Jason- (8/12/2011)
I said grey This was the question from the group VP. I had already nailed all the technical and soft skill questions,...
August 15, 2011 at 12:57 pm
Viewing 15 posts - 736 through 750 (of 3,011 total)