Viewing 15 posts - 226 through 240 (of 270 total)
Are you using integrated authentication?
If you are we have a similar problem beacuse we are currently running in mixed mode security and not 2003 server native. This mean that delegation...
October 22, 2004 at 2:23 pm
To solve this either go to layout and create a parameter called user and set the default value to User!UserID and then create your query as
WHERE Report_Security.UserID = @user
or...
October 22, 2004 at 1:50 pm
I had a a similar problem and solved it by restarting the RPC service.
hth
Dave
October 22, 2004 at 1:41 pm
The main difference is that DBCC INDEXDEFRAG is an online operation whereas DBCC DBREINDEX is an offline opertaion i.e. while re indexing you cannot access the table.
However you invariably have...
October 21, 2004 at 4:45 pm
If i understand you correctly something along the lines of
SELECT CUSTOMERID, PRODUCTID
FROM TABLE
GROUP BY CUSTOMER ID, PRODUCTID
HAVING COUNT(*) > 1
hth
Dave
October 21, 2004 at 4:02 pm
No you would just replace the mail stuff with
exec master..xp_cmdshell 'net send ....... '
October 21, 2004 at 3:12 pm
Yes this is possible.
You could get it notify users by using xp_sendmail or the stored procedure i provided the link for in answer to your previous post or you...
October 21, 2004 at 1:31 pm
Try having a look at the following thread
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=105655
there's a sample procedure there that i posted to send mail using collaboration data objects, make sure you scroll down to...
October 21, 2004 at 12:49 pm
We had this problem.
It is either because an SID for that group or user already exists within the syslogins table of the master database or your DNS servers are not...
September 27, 2004 at 4:49 pm
Susan you're problem seems to be that you need group the output obtained from the union. This is not exactly an elegant solution but should work. All have done is...
September 23, 2004 at 5:22 pm
Unfortunatley I've already tried re-patching the client tools it didn't help.
September 22, 2004 at 2:20 pm
Arvind
I had the same queries when i started using this method and have never yet got an incorrect number of rows whether it has been a clustered or non-clustered index...
July 29, 2004 at 11:41 am
You don't need to use count(*) to achieve this the number of rows in a table is stored in sysindexes.
e.g
SELECT rows
FROM DBName..sysindexes
...
July 28, 2004 at 7:50 am
You can use the maintenance planner in EM to rebuild your indexes on weekly basis or whatever is required.
Remember rebuilding the indexes will lock them preventing access to the so...
July 6, 2004 at 10:50 am
You should just be able to use CAST e.g.
INSERT INTO TABLE (NEW_FIELD)
SELECT NEW_DATE = CAST(OLD_DATE AS SMALLDATETIME(3))
FROM TABLE
If you need more complicated logic then just use the CASE statement ...
June 23, 2004 at 4:40 pm
Viewing 15 posts - 226 through 240 (of 270 total)