Viewing 15 posts - 991 through 1,005 (of 9,641 total)
You can define the foreign key to automatically delete child rows when a parent is deleted. So the FK definition has to look like this:
FOREIGN KEY REFERENCES users(user_id) ON DELETE...
May 22, 2014 at 11:39 am
John Cooper (5/22/2014)
That's what I have been doing is opening it in SSMS, clicking on properties and then OK.
I was wondering if someone had found a better way. I...
May 22, 2014 at 7:53 am
george sibbald (5/22/2014)
May 22, 2014 at 6:24 am
You'd have to hard-code it.
May 21, 2014 at 12:11 pm
I think you want:
=Sum(IIF(Fields!TimeGroup.Value = "LW",Fields!SalesSelling.Value,0))
May 21, 2014 at 12:09 pm
You could use a linked server, but I prefer to stay away from them. I'd probably use SSIS to read new customers and then get the archived data for...
May 21, 2014 at 12:00 pm
If the database is in Simple Recovery model and the log is growing out of control that means there is a long-running transaction that doesn't allow the a checkpoint to...
May 21, 2014 at 11:54 am
An already running job cannot be started again until the first run completes.
May 21, 2014 at 11:50 am
TomThomson (5/20/2014)...
But I probably ought not to say such things - after all, most of the audience here are US citizens who regard anything done and accepted by the government...
May 21, 2014 at 6:20 am
I've never seen that issue. I can view reports in Chrome, although they don't render that well.
When you say blank screen, do you mean you don't even see the...
May 20, 2014 at 1:43 pm
You'd have to query the DMV's to find requests that are doing update statistics.
May 20, 2014 at 1:39 pm
Creating a LOGIN requires server-level permissions, so it doesn't really matter what permissions you grant within the database, even a user with dbo/db_owner permission won't be able to create a...
May 20, 2014 at 1:35 pm
Since the data is coming in as a string then you could do something like this:
="$" & Replace(Fields!amount.value, "-", "-$")
May 20, 2014 at 1:25 pm
Excel is just formatting the data as a percent for display it actually has the data stored as 0.84, etc...
If you want the data to be stored in the database...
May 20, 2014 at 1:21 pm
I don't normally include SET OPTIONS in my scripts. I allow the script to inherit the database/connection SET OPTIONS.
May 20, 2014 at 1:16 pm
Viewing 15 posts - 991 through 1,005 (of 9,641 total)