Viewing 11 posts - 1 through 11 (of 11 total)
Hi,
Keeping QA in sync with Production may help the testers but becomes a problem for dba's. We had a daily job to restore prod backups on QA for the same...
November 11, 2008 at 3:22 pm
George,
Glad I could help 🙂 I think only admin/moderator can close this topic.
BR,
avm
November 11, 2008 at 2:46 pm
Hi George,
Do you have SQL Server Management Studio Express installed on the computer? If yes, then log back in as the other user, open management studio, connect to the database,...
November 11, 2008 at 11:59 am
You will need to explicitly cast the variable as (n)varchar(max)
for example
declare @STR varchar(max)
select @STR = replicate('a', 9001)
select len(@str) --returns 8000
select @STR = replicate(cast('a' as...
August 21, 2008 at 11:22 am
In one of my past projects, I worked in a database team of 7 developers and we would compete with each other to come up with a solution. This usually...
August 21, 2008 at 10:23 am
Well, it's not much easier, if at all. And it certainly is not nearly as good, because AppRoles make it possible to easily combine accessibility checks for both the...
August 21, 2008 at 8:17 am
Alvin Ramard (8/19/2008)
avamin (8/19/2008)
August 20, 2008 at 8:28 am
rbarry: To clarify, I suggested creating a single windows user that only the app will use to talk to database. Sorry if my earlier post was not clear.
August 19, 2008 at 1:49 pm
I haven't used approles so cannot give you any info on that
But to ensure users can access database only through the app, you can limit the permissions of the user...
August 19, 2008 at 1:15 pm
CREATE TABLE #test(
[name] varchar(100),
rows int,
reserved varchar(100),
...
August 19, 2008 at 12:51 pm
you can create composite primary keys such as
EmployeeMaster - CompanyID, EmployeeMasterID
PayCode - CompanyID, PayCodeID
EarningsMiscWrk - CompanyID, EmployeeMasterID, PayCodeID
Foriegn keys can be created on this table on
CompanyID, PayCodeId refer...
August 19, 2008 at 12:13 pm
Viewing 11 posts - 1 through 11 (of 11 total)