Viewing 15 posts - 46 through 60 (of 130 total)
also, for portability of the database do not grant permissions to user/logins grant them to database roles. Then when you restore the database as a copy all you have...
April 16, 2012 at 11:51 am
Execute xp_logininfo 'domain\youracountlogin', 'all'
It will tell you all the paths into the server for your account and if it is user or admin permissions.
April 10, 2012 at 4:56 pm
When it comes to replication I have stopped asking "Why?" or even "WTH? Sometimes when you try a simple schema change it works and sometimes you get errors or...
April 9, 2012 at 3:13 pm
It is possible that since you are just adding a column that just running the reinitialize with new snapshots after modifying the table will be fine. If that doesn't...
April 9, 2012 at 3:05 pm
Real time reporting although discussed as a requirement often is really not a practical goal. Rarely can the business react to anything in real time and certainly the cost...
April 5, 2012 at 2:05 pm
a reporting server that uses links into the production data is a bad idea. Reporting queries, especially ones that aggregate a lot of records from the operational data are...
April 5, 2012 at 12:37 pm
If you left the database in standby mode then the users (even the new one) will not be able to access the database. If you have taken a backup...
March 22, 2012 at 3:52 pm
Check the permissions on the folders. When you copied the filestream folder it may not have inherited the permissions from the SQLData folder. The service account needs permissions...
March 22, 2012 at 2:33 pm
I don't have a copy of PUBS and your desired result is unclear.
Might be something like:
SELECT *
FROM stores
LEFT JOIN Sales
ON stores.<whatever the KEY is FOR Sales TABLE> = Sales.<whatever...
March 20, 2012 at 6:20 pm
Have you read this article? http://www.sqlservercentral.com/articles/Security/65169/
Especially the part about setting SPNs for each service.
I don't know if it has changed in recent version of windows...
March 8, 2012 at 12:47 pm
If you use "Exec At" you can use a stored proc with parameters instead of dynamic SQL.
February 22, 2012 at 11:40 am
use a CTE or table that has a column of dates you want to include and then left join it to your select statement including the new column of "possible"...
February 22, 2012 at 11:06 am
I am not sure what you mean by "add to" but this should update the field to the value you specified
UPDATE PROGRESS_NOTE
SET PROGRESS_NOTE.SUPERVISOR_MONIKER = '699005FE406B40C68B5A5A5DA0090171'
WHERE...
February 22, 2012 at 10:56 am
I feel like being Flip today. The answer to the original posters question is: Yes, a query can be written to do that task. :crazy:
February 16, 2012 at 12:23 pm
When run manually it uses your permissions, when run on schedule by SQL agent it uses the agent accounts permissions. Make sure the domain account that runs your SQL...
February 16, 2012 at 12:19 pm
Viewing 15 posts - 46 through 60 (of 130 total)