Viewing 15 posts - 1,276 through 1,290 (of 2,904 total)
Is your SQL Server set up for Windows Only or mixed authentication?
Is your login set up for Windows only or SQL Server only?
-SQLBill
February 2, 2006 at 7:54 am
Bill,
Two issues.
1. The TEMPDB is growing huge. There are two usual causes of this. First, you have some huge transaction occuring or are doing database maintenance. Second, you have your...
February 2, 2006 at 7:45 am
1. You must have a login on SQL Server that is set for Windows Authentication only.
2. The login must be the same that you use to log into the network.
3....
February 2, 2006 at 7:25 am
I don't use SQL Server 2005, but some checking with SQL Server 2000 shows there is an option with sp_configure that sets the remote access (option name is "remote access")....
February 1, 2006 at 1:24 pm
There are several things that can cause a transaction log to grow to huge amounts (yes, larger than the database itself). Mostly, reindexing or defragging the indexes will cause...
February 1, 2006 at 7:07 am
So, did you check your settings on the SQL Server to see if it allows remote connections?
-SQLBill
January 30, 2006 at 1:17 pm
You run this:
declare @dSTART_DATE datetime
declare @Time datetime
set @dStart_Date= getdate()
Set @Time = '08:26:00'
SELECT CONVERT(VARCHAR(10),@dSTART_DATE,101) + ' ' + convert(varchar(10),@Time,108)
and get the error. Of course you do...you are trying to convert...
January 30, 2006 at 1:12 pm
BTW-If you get a 0 (zero) returned, it means there are values that are not dates. If you get a 1 (one) then all values are dates.
If the 0...
January 30, 2006 at 1:07 pm
Are you sure all your values ARE dates? Run this:
SELECT ISDATE(d_StartDate)
FROM tablename
-SQLBill
January 30, 2006 at 1:04 pm
No problems with that, except for the fact that from there you want to convert it back to datetime. SQL Server doesn't know what 01/27/2006 equates to. Is...
January 30, 2006 at 7:26 am
Why do you want to drop the database?
EM might have taken longer to open because when you stopped the process it had to rollback the transaction. The amount of...
January 27, 2006 at 11:53 am
DBO is a reserved word for DataBase Owner. It cannot be a user created login or role and cannot be mapped in the way you want to do. ...
January 27, 2006 at 11:51 am
BTW-I would suggest putting your date in the yyyymmdd format (use 112 vice 101).
-SQLBill
January 27, 2006 at 11:49 am
You don't give us any sample values for @dSTART_DATE or @Time. So run this, using your values, and show us what the result is:
SELECT CONVERT(VARCHAR(10),@dSTART_DATE,101) + '' + convert(varchar(10),@Time,108)
-SQLBill
January 27, 2006 at 11:47 am
Removing the @txntime is the best option UNLESS you may have to enter that value.
Other options:
Change the order of the parameters when you create the procedure:
PROCEDURE add_dependent
@FName varchar(50),
@MI char(1),
@lname...
January 26, 2006 at 12:07 pm
Viewing 15 posts - 1,276 through 1,290 (of 2,904 total)