Viewing 15 posts - 5,011 through 5,025 (of 5,103 total)
November 30, 2003 at 11:11 am
I believe you would be better staying out of replication in that case and try to tackle it with DTS. Chances are that the structure of those can and will...
November 30, 2003 at 11:06 am
I am not sure what you are trying to accomplish but I think you want this:
SELECT DISTINCT MemberID, UserName
FROM tblUsers JOIN tblProfile on tblProfile.MemberIDpr = tblUsers.MemberID
WHERE
tblProfile.Education IN ('Some College', 'Associates...
November 30, 2003 at 9:49 am
EXCEPTION_ACCESS_VIOLATION usually means corruption in either the OS or the App. if you reboot yourcomputer and it happens again on the SAME place you may file a BUG with MS...
November 28, 2003 at 8:08 am
have a look at ALTER DATABASE
November 26, 2003 at 2:26 pm
quote:
...Not using regular identifiers is, as far as I'm concerned, a bad practice ...
November 26, 2003 at 10:56 am
quote:
DECLARE @sql varchar(200)CREATE TABLE #t(db sysname, own sysname, tab sysname, Col sysname, Seq tinyint, PKName sysname)
SET @sql = PARSENAME(@table,3) + '.'...
November 26, 2003 at 10:31 am
I would run the lon running process as a JOB then when call returns from start_job the query to that progress table can be done periodically.
November 26, 2003 at 8:20 am
How about:
exec master..xp_logininfo N'DomainName\Group', N'members'
Note: The Group Have to Have Access To SQL Server though
November 25, 2003 at 3:25 pm
This may help you:
http://www.sqlservercentral.com/faq/viewfaqanswer.asp?faqid=202
November 25, 2003 at 1:30 pm
case CAN be used in:
- SELECT List
- Join Conditions
- ORDER BY
- GROUP BY
- WHERE
- Some String Handling expressions
Clauses but
not on the FROM part
November 25, 2003 at 1:26 pm
any time you get EXCEPTION_ACCESS_VIOLATION it is either because the OS is in an unstable condition or a bug on SQL Server.
I would suggest a reboot and try to figure...
November 25, 2003 at 1:10 pm
I would use the First option with a "Numbers" table if you join that with your history the non row moth will came as Null and as you can see...
November 25, 2003 at 11:34 am
Thanks,
I have learned from this one too 😉
Happy thanks giving to you too!!
November 25, 2003 at 11:24 am
Viewing 15 posts - 5,011 through 5,025 (of 5,103 total)