Viewing 15 posts - 1 through 15 (of 15 total)
The USERS table is having only userid and associatedrecordid. Userid is a loginname. associatedrecordid is uniqueidentifier data type. Not only this, we have another problem. That is if...
December 1, 2003 at 5:56 am
The actual view definition is
CREATE view V1 as
SELECT
EMPLOYEEDETAILS.EMPLOYEEDETAILS_ID,EMPLOYEEDETAILS.FIRSTNAME,EMPLOYEEDETAILS.MIDDLENAME,EMPLOYEEDETAILS.LASTNAME,EMPLOYEEDETAILS.ADDRESS1,EMPLOYEEDETAILS.AGE,EMPLOYEEDETAILS.COMPANYOFFICE,EMPLOYEEDETAILS.DATEOFBIRTH,EMPLOYEEDETAILS.GRADE,EMPLOYEEDETAILS.HEALTHASSESSMENT,EMPLOYEEDETAILS.LOCATION,EMPLOYEEDETAILS.REPORTSTO
FROM EMPLOYEEDETAILS WHERE
EMPLOYEEDETAILS.EMPLOYEEDETAILS_ID IN
(
SELECT EMPLOYEEDETAILS.EMPLOYEEDETAILS_ID FROM EMPLOYEEDETAILS
WHERE EMPLOYEEDETAILS.MIDDLENAME IN
(select EMPLOYEEDETAILS.MIDDLENAME
from users
join EMPLOYEEDETAILS on users.associatedrecordid = EMPLOYEEDETAILS.EMPLOYEEDETAILS_ID
where USERS.UserID =...
December 1, 2003 at 5:00 am
Hi Sreevani
If you are modifing a record, first Sql server delets the record and then insert a new record with the modified value. Here the deleted table contains the...
May 25, 2002 at 5:04 am
Hi Blue use this query
Select customerID from customer_data where customerid not in (select customerid from customer_log where last_login_date > dateadd(day, -365, getdate())
The above query will solve your problem. All...
April 22, 2002 at 1:43 am
Same thing happend with my server also. I think data buffer is occuping the memory. But if the OS requests any memory it will release the unwanted data from...
April 18, 2002 at 11:39 pm
You can use sp_grantdbaccess procedure.
1) Login as sa or dbo
2) USE HisDB
3) EXEC sp_grantdbaccess 'Cris', 'Cris'
Thanks
Regards
Ram
March 25, 2002 at 4:24 am
Hi Jelena
To rectify this problem follow these steps.
1) In publisher select the database
2) Select Tools --> Replication --> Configure, Publisher, Subscriber and Distributor
3) In the wizard click on Subscribers tab
4)...
March 25, 2002 at 4:05 am
I faced the same problem, but in my case the publisher and subscriber are at two different places and connected by internet. Several times I broken the replication and...
March 1, 2002 at 4:31 am
Hi Mitra
You can see all the error messages in "sysmessages" system table. You can use like "select description from sysmessages where error= 207"
Thanks
Ram(DBA)
February 15, 2002 at 2:15 am
If you want you can create the procedures and save at subscriber end. For creating procedures I will follow the following way. First create a dummy databse with the...
February 5, 2002 at 12:45 am
How you created the subscriber?
While creating subscriber in the "Initialize Subscription" Screen select "Initialize the schema and data at the subscriber. Then this will create procedures at subscriber end...
February 5, 2002 at 12:40 am
Are u started the snapshot or not? If you started the snapshot that will create the tables in subscriber database and replicate the data also. So, check whether...
February 4, 2002 at 10:57 pm
Peter I want some more info to clarify your doubt. What version of SQL you are using? What kind of replication you are using?
Ram
February 4, 2002 at 3:11 am
SQL Server version is 7.0 with SP3. I changed the repinfo to 0 from 256 in sysobjects table for the PUb2 articles tables and tryed to delete the data...
January 21, 2002 at 6:59 am
Viewing 15 posts - 1 through 15 (of 15 total)