Viewing 10 posts - 1 through 10 (of 10 total)
I had created the user and gave access to the database. I did find the further permission restriction at the table level. Thanks.
June 10, 2009 at 11:48 am
Thank you very much for your help. This worked great.
May 15, 2009 at 6:19 am
The actual tables are much more extensive.
CREATE TABLE [dbo].[tmpEntity](
[EntityID] [int] NULL,
[FirstName] [varchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[LastName] [varchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
CREATE TABLE [dbo].[tmpAddress](
[ADDRESSID] [int] NOT NULL,
[ENTITYID] [int] NOT NULL,
[ADDRESSLINE1] [nvarchar](50)...
May 11, 2009 at 3:00 pm
I used to be able to perform this function, but last week they had to do a password modification for the Windows login. What privilage)s) should be set?
May 6, 2009 at 7:46 am
Thanks. I executed that. The rows before and after were 6,196,124 and reserved before and after were 12,801,784.
February 5, 2009 at 7:05 am
Adding in the clustered indexes worked great for wiping out the unused space. What I am also seeing is this example:
table rows - 7,262369
table reserved - 13,214,512 kb
table data -...
February 5, 2009 at 6:29 am
This is SQL Server 2005.
This table has 19.8GB of used space. I tried the Alter Index All on hstordersummary REBUILD and it did not free up the unused space.
When I...
February 4, 2009 at 8:42 am
Thanks, guys. I have a maintenance plan to rebuild indexes once a month, but I see that I should chnage it a weekly process. We are running in about 5000...
February 3, 2009 at 10:02 am
Thank you.:)
October 21, 2008 at 1:05 pm
I am looking at sp_AddLinkedServer, but am having syntax problems. I am using @server='LinkedServerName',@DataSrc='1.1.1.1' and am getting error that it needs a provider name. When I add @Provider='SQLNLCI',...
October 21, 2008 at 11:55 am
Viewing 10 posts - 1 through 10 (of 10 total)