Viewing 15 posts - 1,531 through 1,545 (of 2,647 total)
The semi-colon at the start of his query is actually bad when demonstrating the method used for creating a CTE. It's there to terminate the previous statement but is often...
March 1, 2012 at 9:54 am
rhd110 (3/1/2012)
Using the command prompt we use
1. Open Run window
2. Type SQLCMD enter
3. Type USE TestDB enter
4. Type GO enter
5. EXEC dbo.sp_InsertTempValue 101
6. Type GO enter
The following steps insert values...
March 1, 2012 at 8:55 am
LutzM (2/29/2012)
CREATE TABLE calls
(
callid INT IDENTITY(1,1),
appId INT,
callTime DATETIME,
...
March 1, 2012 at 8:30 am
ColdCoffee (2/29/2012)
Can you provide us a sample input and expected output for that sample input?
I am waiting on the sample input, but I am pretty sure that it will be...
March 1, 2012 at 8:24 am
Hey Celko, when you consult with a client who has applications built around a database (assuming you actually work and don't just talk theory), do you tell them to rebuild...
February 27, 2012 at 3:49 pm
rocky (2/23/2012)
February 23, 2012 at 12:10 pm
Ok, let me ask you this... Why do you think account X is default versus account Y? How did you figure that out?
February 23, 2012 at 11:52 am
rlswisher (2/23/2012)
From Table A
Left Join B on ID = ID
Where A.Col = x
and B.Col...
February 23, 2012 at 11:45 am
Go to your default SQL Server Log folder (...\MSSQL\log\) and look at the error log file.
February 23, 2012 at 11:30 am
rlswisher (2/23/2012)
In your alternative, by removing the...
February 23, 2012 at 11:18 am
Did you recently delete any folders? ...\MSSQL\DATA or ...\MSSQL\LOG
These folders need to be in the configured place. You should see an error that says Cannot open specified folder...
February 23, 2012 at 11:02 am
Ok, now you have to go to the event viewer and see why it is not starting. Or, go to SQL Server Configuration Manager and try to start it from...
February 23, 2012 at 10:48 am
anthony.green (2/23/2012)
you don't need a default mail profile so maybe that's why nothing is being returned from principal profile.
Maybe so, but I have 2 profiles on my server and both...
February 23, 2012 at 10:47 am
dsohal (2/23/2012)
MSSQLSERVER and SQLSERVERAGENT
If MSSQLSERVER is stopped, then the database engine is not running. MSSQLSERVER must be running in order to start SQLSERVERAGENT service.
February 23, 2012 at 10:40 am
A 1068 error means one or more of the required services is not running... So... Which services are stopped?
February 23, 2012 at 10:33 am
Viewing 15 posts - 1,531 through 1,545 (of 2,647 total)