Viewing 15 posts - 4,516 through 4,530 (of 6,036 total)
If you don't want to think leave this profession right now. It's not for you.
I stated everything you should get from BOL if you've been taught to read manuals.
JOIN ==...
_____________
Code for TallyGenerator
February 12, 2007 at 1:02 am
1. Open BOL anf find out that JOIN == INNER JOIN.
2. Give yourself a definition what is "duplicate rows".
_____________
Code for TallyGenerator
February 11, 2007 at 1:34 pm
I would start from another question:
why to do such UPDATE at all?
Concatenating values from 2 fields contradicts essential rules of data management.
If somebody some time needs concatenated values just use...
_____________
Code for TallyGenerator
February 7, 2007 at 10:03 pm
IF EXISTS (select 1 from INSERTED)
will perform faster.
If your trigger is for delete as well use
IF EXISTS (select 1 as One from INSERTED UNION select 1 as One...
_____________
Code for TallyGenerator
February 6, 2007 at 5:14 pm
It's not a problem, there is nothing to fix.
It's TRANSACTIONAL SQL.
In order to prevent creating another table with the same name SQL Server checks if such table already exists in...
_____________
Code for TallyGenerator
February 6, 2007 at 5:07 pm
Another victim of NULL replacement.
![]()
You need just restore NULL where it suppose to be:
where DATEDIFF(D, CONVERT(DATETIME, NULLIF(NEWREQDATE, '00000000'), GETDATE() ) > 1
_____________
Code for TallyGenerator
February 6, 2007 at 4:17 pm
February 6, 2007 at 4:54 am
Then all you need is just "linked table" from Access to SQL Server.
Right click on "tables", chose "Link to tables", there select "ODBC Databases", click "NEW", find "SQL Server" in...
_____________
Code for TallyGenerator
February 5, 2007 at 10:43 pm
Can anybody suggest less suitable way to pass data from SQL Server to Access than XML file?
_____________
Code for TallyGenerator
February 4, 2007 at 1:19 pm
...
sSql = "EXEC dbo.DepartmentEmployees " _
& "@department_id = " & departmentId
Set oRs = oConn.Execute(sSql)
_____________
Code for TallyGenerator
February 1, 2007 at 5:17 pm
Are you sure this code is written in T-SQL?
_____________
Code for TallyGenerator
February 1, 2007 at 5:14 pm
If you need only lines where ALL profiles are present you may use inner join:
SELECT FN.propertyValue AS FirstName, LN.propertyValue AS LastName,
CN.propertyValue AS CompanyName, C.propertyValue AS City,...
_____________
Code for TallyGenerator
February 1, 2007 at 4:50 pm
> Not to beat a dead horse, but any ideas why it worked for almost a year?
Good question.
Did anybody do anything with Distributed Transactions settings on the server? On remote...
_____________
Code for TallyGenerator
February 1, 2007 at 4:40 pm
February 1, 2007 at 4:10 pm
Which of the statements hangs now?
_____________
Code for TallyGenerator
February 1, 2007 at 3:16 pm
Viewing 15 posts - 4,516 through 4,530 (of 6,036 total)