Viewing 15 posts - 4,636 through 4,650 (of 26,490 total)
Try this:
declare @myDate datetime;
set @myDate = cast(dateadd(day, -1, getdate()) as date);
SELECT
*
FROM
[ThomasSci].[dbo].[tsi_gdserial_vw]
where
cast(date_shipped as date) = @myDate
order by
...
August 19, 2015 at 11:18 am
Control-Shift-R in SSMS for SQL Server 2012. I don't have SQL Server 2014 installed yet.
If that doesn't work, start with the Edit menu when you have an active query...
August 19, 2015 at 10:59 am
kiran.rajenimbalkar (8/19/2015)
CREATE TABLE abc (
id INT
,EID INT
,name NVARCHAR(1000) NULL
...
August 19, 2015 at 10:36 am
Looks like you need to refresh the Intellisense Local Cache.
August 19, 2015 at 10:20 am
Sean Lange (8/19/2015)
August 19, 2015 at 8:57 am
Do you know what would really help? DDL for the tables/views involved, sample data that represents the problem domain (includes data that will be returned as well as some...
August 18, 2015 at 3:23 pm
Chris.Hubbard4U (8/17/2015)
Lynn Pettis (8/17/2015)
Two questions:1) is this a default instance
2) What does the following return: select SERVERPROPERTY('machinename');
I did not answer you first question; sorry about that.
I can not think of...
August 17, 2015 at 2:12 pm
Eirikur Eiriksson (8/17/2015)
Lynn Pettis (8/17/2015)
Looks like someone ran sp_dropserver.Someone should then run sp_addserver
😎
Yes. Need the answers to the two questions I asked.
August 17, 2015 at 1:39 pm
What you are looking for is a running total. Will need more information, DDL for the table (CREATE TABLE statement), sample data (INSERT INTO statements), expected results based on...
August 17, 2015 at 1:38 pm
Looks like someone ran sp_dropserver.
August 17, 2015 at 1:32 pm
Two questions:
1) is this a default instance
2) What does the following return: select SERVERPROPERTY('machinename');
August 17, 2015 at 1:15 pm
What does this return:
select * from sys.servers;
August 17, 2015 at 1:03 pm
Alvin Ramard (8/17/2015)
Brandie Tarvin (8/17/2015)
Alvin Ramard (8/17/2015)
I hope the OP wasn't serious!!!! :w00t:http://www.sqlservercentral.com/Forums/Topic1712315-2799-1.aspx
You are WRONG, Sir! Case has absolutely EVERYTHING to do with the way things work. If we...
August 17, 2015 at 11:22 am
g.britton (8/14/2015)
The target table has the identical definition and the data is being stored in the same way. No manipulations or changes
Not relevant to what I am talking about here....
August 14, 2015 at 9:23 pm
Viewing 15 posts - 4,636 through 4,650 (of 26,490 total)