Viewing 15 posts - 616 through 630 (of 686 total)
As you said, there's lots of debate on whether or not a certificate is "worth" anything. But if you're confident you can pass and your company is paying.... "it couldn't...
March 31, 2011 at 11:05 am
SQL Server 2008 sp2 cu2 - latest 2008 release
SQL Server 2008 R2 cu6 - latest 2008 R2 release
There have not been any service pack releases for SQL Server 2008 R2....
March 4, 2011 at 5:52 am
From my experience, don't think that it's tough to find a position with little real world experience. I've seen many people straight out of college with no on the job...
March 2, 2011 at 9:25 am
I go with what MS says.
"A supported cumulative update package is now available from Microsoft. However, it is intended to correct only the problems that are described in this...
March 2, 2011 at 6:15 am
Keep in mind that TDE encrypts data "at rest". Meaning you can't open the .mdf file in notepad and gather plain text data. Also, TDE doesn't stop someone from logging...
March 1, 2011 at 5:52 am
You are right. It is not normalized as far as the objectName, counterName, and description are concerned. This data is populated by pulling from a DMV which is why I...
February 28, 2011 at 9:35 am
I just wanted to give you props for posting
1:ddl script
2:sample data script
3:expected results
February 4, 2011 at 6:36 am
You can do it one of two ways.
A:
Create a user for each login
Create a user defined database role
Add each user to that role
B:
Create a windows security group in your...
February 4, 2011 at 6:28 am
I'll chime in to try and spur some conversation.
I'm not sure how MAXDOP works in detail or what effect it has on query results but I'll touch on something you...
January 31, 2011 at 6:12 am
Select
Orders.OrderId,
Orders.OrderNotes,
OrderDetails.ProductCode,
OrderDetails.Productname,
OrderDetails.Quantity --this is where your typo was. 'orderdetails,quantity' instead of 'orderdetails.quantity'
From Orders
join Orderdetails
on orders.orderid = orderdetails.orderid
Where Orders.Orderstatus in ('Pending', 'Processing', 'New')
you're getting all columns because...
January 19, 2011 at 11:15 am
I'll give you some advice to get more (at least one) answer to your question. Provide some ddl for us to work with. It's more likely an expert will fancy...
January 19, 2011 at 11:10 am
Have you thought about just storing the files in a column (varbinary)?
Or even use filestream if you're super ambitious. This would be good if you already have all your recipes...
January 14, 2011 at 12:18 pm
Here's what BoL says about piecemeal restores.
http://msdn.microsoft.com/en-us/library/ms175541.aspx
I'm pretty sure you need to have been doing filegroup backups along the way also. No piecemeal restores from a single full...
January 14, 2011 at 6:57 am
Hooray! I'll do a celebratory happy dance for your success. Glad you got it working.
January 14, 2011 at 6:46 am
format(expression,[optional string format])
So perhaps you could format the whole thing like this?
=iif(format(Fields!COSTYPE.Value = "M","Available","Reconciled"))
I believe format is the appropriate function.
Again, I'm just trying to throw ideas out there until...
January 14, 2011 at 6:29 am
Viewing 15 posts - 616 through 630 (of 686 total)