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 ==...
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".
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...
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...
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...
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
February 6, 2007 at 4:17 pm
Read about bcp command in BOL.
All answers for you are there.
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...
February 5, 2007 at 10:43 pm
Can anybody suggest less suitable way to pass data from SQL Server to Access than XML file?
February 4, 2007 at 1:19 pm
...
sSql = "EXEC dbo.DepartmentEmployees " _
& "@department_id = " & departmentId
Set oRs = oConn.Execute(sSql)
February 1, 2007 at 5:17 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,...
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...
February 1, 2007 at 4:40 pm
Does you SP have some
SELECT ...
INTO #Table
statements?
February 1, 2007 at 4:10 pm
Viewing 15 posts - 4,516 through 4,530 (of 6,036 total)