Viewing 15 posts - 556 through 570 (of 686 total)
Are you a local admin?
Try putting the service account in the local admin group to allow it to change permissions on directories.
Revisit this later to ensure security policies are adhered...
June 1, 2011 at 10:49 am
select db_name(database_id),physical_name from sys.master_files
All the information you need is in that table. [name] is the logical file name. If you're looking for a specific filename, look in [physical_name].
June 1, 2011 at 10:35 am
And you're not able to see the report site at all?
You've checked your UAC settings?
June 1, 2011 at 7:38 am
start IE as admin like you've done. Add the report server url to your trusted sites tools -> options -> content -> trusted sites -> sites. Add http://localhost*...
June 1, 2011 at 6:55 am
A few questions about your setup first.
Is the reporting server on a seperate machine?
Is the reporting server in a different domain?
Are you a local administrator on the reporting server?
June 1, 2011 at 6:26 am
you must declare the variable before using it
and the parameter is @passwd for that procedure, so...
declare @pwd varbinary(256)
SET @pwd = CONVERT (varbinary(256), 0x01000ABGFDSECDS)
EXEC master..sp_addlogin 'sahit',@passwd = @pwd, @sid...
May 26, 2011 at 12:40 pm
abdul.irfan2 (5/24/2011)
they have some sort of network scanning/inventory application on their machine that tries to connect with no login name.
...also we...
May 25, 2011 at 8:32 am
The sp_change_users_login procedure still works in 2008. the 'update_one' parameter maps a database user to a server login. The discrepency is when you move a database to a new instance...
May 25, 2011 at 8:23 am
No. You can only send emails from Workgroup, Web, Standard, Enterprise, and Datacenter.
May 25, 2011 at 6:04 am
seed is the starting number.
increment is the amount you want to increment for each record insert.
ALTER TABLE [tableName]
ADD [columnName] int identity(1,1)
will yield
1,2,3,4,5...
May 24, 2011 at 12:30 pm
create table test(col1 int identity primary key not null, col2 int)
--check table design. identity specification = yes
insert into test (col2)
values (2),(5),(23)
alter table dbo.test
drop constraint [constraintName]
--check table design. identity specification =...
May 24, 2011 at 12:27 pm
It's a form of join.
select a.col1,b.col1
FROM A,B
WHERE a.col1 = b.col1
same as
select a.col1,b.col1
from a
inner join b
on a.col1 = b.col1
pretty sure I have that correct
May 24, 2011 at 12:19 pm
And make sure you do adequate testing prior to releasing to production.
May 24, 2011 at 12:17 pm
ALTER TABLE [tableName]
ADD [columnName] int identity(seed,increment)
This will populate the new field with an auto-incrementing number
Then you can add the primary key constraint on the new field
May 24, 2011 at 12:16 pm
Viewing 15 posts - 556 through 570 (of 686 total)