Viewing 15 posts - 211 through 225 (of 576 total)
If you need to automate this then you may need to create a table with all user tables and permissions on it and then grant the permissions. Sorry, but I...
July 20, 2005 at 5:49 pm
You can configure SQL Mail to send you any type of email based on any SQL Server event.
As for the status of Replication, just what exactly would you like emailed?
July 20, 2005 at 5:45 pm
Sure have. I have a work around by using a Physical Table. I just wanted to see if it was possible using a temp table.
1 more question, how do you...
July 5, 2005 at 5:40 am
Thanks to all for the input but this is how I have mananged to get it working.
DECLARE @StartDate VARCHAR(20), @EndDate VARCHAR(20)
SET DATEFORMAT DMY
SET @StartDate = '01/01/2005'
SET @EndDate '31/01/2005'
SELECT * FROM...
June 9, 2005 at 6:07 am
SET DATEFORMAT does not work!
I have no choice but to parse the 2 input paramaters as dmy. Your example does...
June 7, 2005 at 5:08 am
No need to perfrom a convert/cast Ron K. WHERE CURRENT OF will do the trick. The SET BASED solution from PW is attractive as well.
Thanks for your help folks.
March 31, 2005 at 5:46 pm
I forgot to mention that the the CRED_ID COLUMN is a VARCHAR(10)
March 31, 2005 at 5:15 pm
I thought that the initial select for the cursor would have catered for that but nevertheless I have changed it now to;
UPDATE WorkSite SET CRED_ID = @Value
WHERE CRED_ID IS NULL
but...
March 31, 2005 at 5:13 pm
I'll have aread of the article however, I'm able to retrieve fragmentation info for the IndexID of 0. I must say, it is very fragmented.
March 17, 2005 at 10:57 pm
Viewing 15 posts - 211 through 225 (of 576 total)