Viewing 15 posts - 346 through 360 (of 576 total)
This is somewhat a very strange Design you have!
If you want to proceed with this unorthodox method, you will have to get MAX(RoleID) and MAX(MenuID) and incrmemnt it by 1...
October 7, 2004 at 9:27 pm
You need a Corellated SubQuery for this.
Try this,
SELECT A.Dept_ID, A.Dept_Name, A.Date_Stamp
FROM Departments A
WHERE Date_Stamp IN (SELECT MAX(Date_Stamp)
FROM Departments B
WHERE A.DeptI_D = B.Dept_ID)
October 7, 2004 at 9:18 pm
If you are trying to use Windows Authentication and have only logged into a workgroup, then that is what the problem is!
You need to get the workstation configured to join...
October 7, 2004 at 5:17 pm
José Rotsaert,
Could you please educate me on how you granted your Domain users Windows group to the Browser & viewer roles on the Rport Server?
I'm having difficulty understanding Reporting Services...
October 7, 2004 at 5:13 pm
You can't restore a SQL Server 2000 Database to a SQL Server 6.5 Server or vice versa.
You would have to look at copying Data and Objects via DTS.
October 6, 2004 at 10:16 pm
Thanks Phil. I thought the same but I just wanted to check if anyone knew a trick or 2 with it.
October 5, 2004 at 11:18 pm
I have a similar process in one of my Databases here. You basically have to create a Table and record each users login time and logout time. Then you can...
October 5, 2004 at 9:23 pm
Each Server requires a per processor license.
October 5, 2004 at 9:20 pm
Try reinstalling on top of it.
October 5, 2004 at 9:18 pm
Did you update the Index Statistics with a FULLSCAN? if not, try that.
October 5, 2004 at 9:13 pm
Is there any chance you could try this on a test server?
I too have moved Transaction Logs but not on a Replicated Database, so it would be safer to try...
October 5, 2004 at 5:36 am
Are the SQL Server services started with a domain account?
Did you setup Snapshot replication with the default settings?
August 5, 2004 at 7:03 pm
You should be able to just do a GROUP BY CUST_ADDRESS.STATE
Have you tried that?
August 3, 2004 at 7:09 pm
You should be able to just do a GROUP BY CUST_ADDRESS.STATE
Have you tried that?
August 3, 2004 at 7:09 pm
Viewing 15 posts - 346 through 360 (of 576 total)