Viewing 15 posts - 3,856 through 3,870 (of 5,111 total)
I have VS 2008, 2012 and 2016 installed on my PC at the office and have no problems. Yes i mainly use 2016 now, but they all had their respective...
April 22, 2017 at 9:47 am
If the SQL instance is stopped, this will effect Agent as well. If you stop the SQL instance, you'll need to start Agent for that instance up again too. Are...
April 22, 2017 at 9:30 am
You can't use SET to set the values of several variables. You would either need to use SELECT, or SET the value of each one individually.
April 22, 2017 at 2:57 am
Pants, just noticed i was on the 2008 forum, not 2012 ilke I thought i was. I'll edit my solution. Lag won't work
April 21, 2017 at 7:46 am
How's this?CREATE FUNCTION tvf_HighestIncreased (@Refno int)
RETURNS TABLE AS RETURN (
WITH Increases AS(
SELECT *,
Total - LAG(Total) OVER (PARTITION BY...
April 21, 2017 at 7:36 am
Licence terms can be found here: https://docs.microsoft.com/en-us/sql/ssdt/sql-server-data-tools-license-terms
A quick scan doesn't say anything, but it would be worth reading and checking yourself. for your own benefit.
April 21, 2017 at 2:28 am
Back up to a different media. For example an external storage device or a network device. Otherwise create more space on the location you are trying to back up to.
April 20, 2017 at 2:00 pm
Personally,I'd probably go with a solution like this:SELECT T.ProcessDate, T.ProcessDateShort,
T.AccountNumber, T.AccountStatus,
T2.SumOpenShareBalance
FROM #Temp T
CROSS APPLY (SELECT TOP...
April 20, 2017 at 1:10 pm
I'm pretty sure that SSDT does work on Express. In fact, I'm confident we have a package that connects to a third party Express database at the office. Yes, the...
April 20, 2017 at 12:29 pm
Sample data as SQl statement attached as a txt file (far too large to paste, and .sql files are not allowed...?).
Is this not a simple GROUP BY? If...
April 20, 2017 at 9:20 am
April 20, 2017 at 7:39 am
I blame my spell checker. 🙂 I...
April 20, 2017 at 7:04 am
The BigInt datatype can store a value of up to 2^63-1, That equates to 9,223,372,036,854,775,807, which is far larger than your number.
What is the rest of the...
April 20, 2017 at 5:26 am
You don't. You attach the database and access the data on your SQL Server.
April 20, 2017 at 5:12 am
Viewing 15 posts - 3,856 through 3,870 (of 5,111 total)