Viewing 15 posts - 8,176 through 8,190 (of 9,641 total)
I don't know anything about Crystal Reports so as far as needing an ODBC connection, from the SQL Server side I don't think so. On the SQL Server you...
July 30, 2008 at 1:30 pm
Here is something I think will work:
[font="Courier New"]CREATE TRIGGER dbo.trptAppointmentsINSERT
ON dbo.ptAppointments
AFTER INSERT, UPDATE[/b]
AS
BEGIN
SET NOCOUNT ON;
IF UPDATE(resource) OR UPDATE(site)
BEGIN
UPDATE ptAppointments
SET resource = I.Resource +...
July 30, 2008 at 1:26 pm
That book will get you the basics. Any of the Inside SQL Server 2005 books (4 in the series) are good. It really depends on what aspect of...
July 30, 2008 at 1:19 pm
Here is something that works although it can be hard to read. You could also do it in steps. My example uses the AdventureWorks database:
[font="Courier New"]SELECT
UnitPrice,
/*...
July 30, 2008 at 1:17 pm
Usually when this happens it is because remote connections are not enabled in Express, I know you said it was on, but are BOTH tcp AND named pipes enabled? ...
July 30, 2008 at 12:40 pm
I had this issue on my personal PC because McAfee has a port blocking rule that blocked SMTP except from registered programs.
July 30, 2008 at 12:38 pm
I think you want something like this:
[font="Courier New"]SELECT
I.resource + ' ' + I.site
FROM
inserted I
[/font]
Inside your IF block.
July 30, 2008 at 12:37 pm
I'm not sure what you are trying to capture for data but if you google sp_MSforeachdb you may find out you can use this undocumented system procedure to accomplish your...
July 30, 2008 at 12:34 pm
N is used before character data literals to specify that it is a unicode string (nvarchar, nchar data types). SQL Server will normally do an implicit conversion of non-unicode...
July 30, 2008 at 12:27 pm
We use Backup Exec for the server backup and native SQL Backups for the databases. I have not heard good things about the SQL Agent for Backup Exec.
July 30, 2008 at 12:25 pm
Just based on the number of correlated subqueries in your code I would say yes there is a better and faster way. Probably the best way for someone to...
July 30, 2008 at 12:22 pm
Sure it is still an issue in my query, but by using the join and doing the conversion on 1 side in the Derived table I reduce it to 1/2...
July 30, 2008 at 10:57 am
Sandy (7/30/2008)
Gail,As MVP's are the people those who selected by the Microsoft itself... So I can consider their suggestion's as one of the selective answer for this topic....
Cheers!
Sandy.
You might be...
July 30, 2008 at 9:47 am
I don't disagree that it would be nice addition, but there is a work-around. Also it would be nice if people would use the IFCodes period. How many...
July 30, 2008 at 9:43 am
J (7/30/2008)
Ignore this posting, I am just subscribing to this thread. If anyone knows how to subscribe without making a dummy post, let me know. Regards
On the top right hand...
July 30, 2008 at 8:38 am
Viewing 15 posts - 8,176 through 8,190 (of 9,641 total)