Viewing 15 posts - 346 through 360 (of 9,641 total)
Okay, so you have SQLExpress installed, which is kind of what I thought. The next step is to go into SQL Server Configuration Manager -> SQL Server Network Configuration...
July 17, 2015 at 10:50 am
It really doesn't matter what directory the files are in as long as they are in the location specified in your CREATE DATABASE statement which they are. The only...
July 17, 2015 at 8:25 am
Did you follow the instructions for installing and attaching the database, found here, http://social.technet.microsoft.com/wiki/contents/articles/3735.sql-server-samples-readme.aspx?
July 16, 2015 at 1:20 pm
No. Reporting Services Configuration Manager isn't part of designing a report. Can you attach the report definition file (.rdl) to the thread? You attach files using post...
July 16, 2015 at 7:27 am
drew.allen (7/15/2015)
July 15, 2015 at 3:02 pm
Steve Jones - SSC Editor (7/15/2015)
Lynn Pettis (7/15/2015)
Not as concerned about getting...
July 15, 2015 at 2:49 pm
traczek2 (7/15/2015)
Because AdventureWorksDataset has no "+" to expand and see the contents of the files (tables).
Also,...
July 15, 2015 at 1:41 pm
ZZartin (7/15/2015)
SELECT CUR_COL_ONE, COL_VALUE, ROW_NUMBER() OVER(PARTITION BY PAR_COL_ONE ORDER BY CUR_COL_ONE) AS SEQ_NUMBER FROM TEMP_CTE_TWO
UNION ALL
SELECT COL_ONE, COL_TWO, 0 FROM #test WHERE COL_TWO =...
July 15, 2015 at 1:36 pm
sql_novice_2007 (7/15/2015)
I am sorry following is the right query.SELECT * FROM tblNew a LEFT JOIN tblOld b
ON a.empId=b.empId WHERE a.deptId<>b.deptId
OR b.deptId is null
This query is logically an INNER JOIN because...
July 15, 2015 at 1:12 pm
Just saw this recently when using a loginless user using EXECUTE AS. Could be that this is what is happening.
You can verify using this:
CREATE USER test WITHOUT LOGIN;
GO
EXECUTE AS...
July 15, 2015 at 1:06 pm
But you aren't returning the '@@@@@' columns that are in the set.
July 15, 2015 at 1:00 pm
There are many possible reasons for this including:
1. Much more data in the table(s) being accessed in database2
2. Database2 being on a different server and not having as many resources
3....
July 15, 2015 at 12:51 pm
How do you know that the data source is not pointing to the correct database?
What is the connection string you used?
July 15, 2015 at 12:44 pm
Based on the example in this BOL Article, I'd say varbinary(128).
July 15, 2015 at 12:43 pm
Do you need to do it at insert or is it an update AFTER the rows are inserted?
It is possible to do it in both cases. Seems like an...
July 15, 2015 at 12:39 pm
Viewing 15 posts - 346 through 360 (of 9,641 total)