Viewing 15 posts - 3,646 through 3,660 (of 7,191 total)
Here's one way, but I'm not sure that it's the best. Create a table called ForbiddenPatterns with columns Size, Colour, Pattern. Insert one row for each forbidden combination....
January 24, 2014 at 4:41 am
You can check the authentication mode in the registry. If it's set to Windows only, change it to Mixed and try sa again. If that doesn't work, you...
January 23, 2014 at 9:56 am
So the answer to your original question is no, it's not overkill. You can't rely on the clustered index for sorting query results. Parallelism, advanced scans and other...
January 23, 2014 at 3:13 am
Fairly simple in T-SQL, as well:
SELECT
a.RowNumber
,a.name
,a.dQty
,a.Price
,b.RowNumber
,b.name
,b.dQty
,b.Price
FROM
MyTable a
LEFT JOIN
MyTable b ON a.RowNUmber + 1 = b.RowNumber and a.RowNumber%2 = 1
John
January 23, 2014 at 2:41 am
Yash
It's not easy to condense into a few sentences if you've never designed or edited a package before. Is your code all under source control? Is the person...
January 22, 2014 at 9:49 am
Yash
No, it's in the package. You need to open the .dtsx file in BIDS and redesign it.
John
January 22, 2014 at 9:33 am
Yash
Put all the tasks in question into a Sequence container and set the TransctionOption property to Required.
John
January 22, 2014 at 9:25 am
I think you'd need a trigger to implement that sort of logic.
John
January 22, 2014 at 7:29 am
Ryan Keast (1/22/2014)
I've now changed SQL Server service to run under the same account of mhs2\sysadmin3 and they are now working.
Interesting. Looks as if the maintenance plans are running...
January 22, 2014 at 4:58 am
OK, so you've opened the job, looked at the Owner field, and check that the login specified there is sysadmin? You'll need to find a different way of checking...
January 22, 2014 at 4:54 am
If the login that owns the job is sysadmin, then the job should run in the context of the SQL Server Agent account. Does SQL Server run under the...
January 22, 2014 at 4:45 am
I would strongly advise against running any service under a domain admin account. If the service gets compromised (whether accidentally or maliciously), an unlimited amount of damage could be...
January 22, 2014 at 4:33 am
There's a utility (it might even be free) that displays all your scheduled jobs in a calendar format. I'm afraid I don't know what it's called, but if you...
January 22, 2014 at 3:58 am
Srikant
My advice to your management would be to test thoroughly in advance, so that you can be as confident as possible that when you upgrade in live, there won't be...
January 22, 2014 at 2:19 am
You haven't said what exactly isn't working. I suspect that your problem is how to fire triggers from events in AD. If that's the case, you'd be better...
January 22, 2014 at 1:54 am
Viewing 15 posts - 3,646 through 3,660 (of 7,191 total)