Viewing 15 posts - 1,231 through 1,245 (of 2,904 total)
Did you check to see if the DNS server was down at the time it failed?
-SQLBill
February 27, 2006 at 12:06 pm
Not quite like this (nothing is like SQL Server). But a strictly 'forum' site for computer professionals is http://www.tek-tips.com. It is a free-site and covers a lot of different...
February 27, 2006 at 8:08 am
They are dropped from my production systems.
-SQLBill
February 27, 2006 at 8:05 am
Have you checked the Windows Event Viewer Logs? Usually when a Windows Authenticated user cannot connect, it is:
1. the login is SQL Server Authentication - which doesn't apply in...
February 27, 2006 at 8:04 am
Check out the BOL for information on the commands.
INNER JOIN means that there must be a match in BOTH tables.
TableL ...
February 24, 2006 at 11:34 am
Maybe:
SELECT MyDateField
FROM MyTableName
WHERE MyDateField > (SELECT MIN(MyDateField)
FROM MyTableName)
...
February 24, 2006 at 11:26 am
Stop the Agent service. As long as that is running, jobs can and will run. Also, what login did you use to put the database in single user...
February 24, 2006 at 11:24 am
SELECT INTO creates a NEW table, but you have to give it a table name. You are using the SAME table name, so that won't work.
Let's step through this:
DROP TABLE...
February 24, 2006 at 8:43 am
quote: as well as it is displaying some warnings
What warnings are you getting?
-SQLBill
February 24, 2006 at 8:37 am
Where are you doing your restore from? Over a network? From a tape? From disk?
-SQLBill
February 24, 2006 at 7:22 am
How slow is slow? How long did your backup take?
-SQLBill
February 24, 2006 at 7:20 am
The detach/attach should have set your database into a recovered mode.
Lesson learned: always determine which backups you need to restore before you do the restore.
-SQLBill
February 24, 2006 at 7:20 am
Craig,
As an example of why you would use TSQL....I have some users that need to use Crystal Reports to query my database. I created a stored procedure (TSQL) that...
February 23, 2006 at 8:52 am
Software add-on can be almost anything. For one example, my users need a specific report. If I can't find a reporting software that does the job and is cost...
February 22, 2006 at 11:38 am
Which version and edition of SQL Server do you have? (Edition = Standard, Enterprise, Developer, MSDE, etc; Version = Service Pack level).
-SQLBill
February 22, 2006 at 11:26 am
Viewing 15 posts - 1,231 through 1,245 (of 2,904 total)