Viewing 15 posts - 11,296 through 11,310 (of 26,486 total)
dwain.c (6/14/2012)
INNER JOIN student with studentSchoolHistory tables to get the first 3 columns. Use a correlated subquery to get the fourth (Mobility Indicator) column.
Oh, actually a left outer join...
June 15, 2012 at 12:12 am
surma.sql (6/14/2012)
dwain.c (6/14/2012)
It appears that there is more than one person stumped on the same homework problem.http://www.sqlservercentral.com/Forums/Topic1316131-391-1.aspx
Thanks for reply. but please help me.
i need help, thats why i post
I have...
June 15, 2012 at 12:11 am
Not sure why you need the SUM or GROUP BY.
DECLARE @ACCOUNT TABLE
(
ACCOUNT CHAR(4) NOT NULL,
[DESC] CHAR(4) NOT NULL,
[SIGN] CHAR(4) NOT NULL
);
DECLARE @FACT TABLE
(
ACCOUNT CHAR(4) NOT NULL,
ORGANIZATION CHAR(3) NOT NULL,
[YEAR] SMALLINT...
June 14, 2012 at 11:42 pm
dwain.c (6/14/2012)
Sean Lange (6/14/2012)
June 14, 2012 at 7:36 pm
SQL_NuB (6/14/2012)
SQLKnowItAll (6/14/2012)
SQL_NuB (6/14/2012)
SQLKnowItAll (6/14/2012)
SQL_NuB (6/14/2012)
Lynn Pettis (6/14/2012)
SQL_NuB (6/14/2012)
The data returned is going to be used on reports...
June 14, 2012 at 1:52 pm
Sean Lange (6/14/2012)
;with...
June 14, 2012 at 1:35 pm
Lynn Pettis (6/14/2012)
tpalmer (6/14/2012)
June 14, 2012 at 1:29 pm
tpalmer (6/14/2012)
No. I am talking about SQL System Configurations (e.g. SP_CONFIGURE 'REMOTE ACCESS'). Default value is 1 (on) and we now need to set it to 0 (off).
Dumb question,...
June 14, 2012 at 1:24 pm
SQL_NuB (6/14/2012)
The data returned is going to be used on reports so no filtering right now, just put...
June 14, 2012 at 1:21 pm
And these backup files aren't backed up to another location, file server or tape?
June 14, 2012 at 1:17 pm
Are you talking about the ability to RDP to a server or SQL Server being able to accept remote connections (like from an application)?
June 14, 2012 at 12:43 pm
Peer to peer replication is a form of transactional replication. It allows updates on either side.
Also, if you aren't using Enterprise Editon of SQL Server 2005, it isn't available...
June 14, 2012 at 11:48 am
When you t-log is 90% full (used), what does this query return:
DECLARE @DatabaseName VARCHAR(50);
SET @DatabaseName = 'VeryImportant' -- your database name here
SELECT name, recovery_model_desc, log_reuse_wait_desc
FROM...
June 14, 2012 at 11:43 am
nehaCS (6/14/2012)
@ThisDate,
DATEADD(ww,-8,@ThisDate),
DATEADD(ww,DATEDIFF(ww,0,ISNULL(@ThisDate,GETDATE())) - 8,4),
DATEADD(ww,DATEDIFF(ww,'19000101',ISNULL(@ThisDate,GETDATE())) - 8, DATEADD(dd, 4, '19000101'));
So I understood the first part...
June 14, 2012 at 11:41 am
Viewing 15 posts - 11,296 through 11,310 (of 26,486 total)