Viewing 15 posts - 20,221 through 20,235 (of 26,490 total)
GilaMonster (6/27/2009)
Could well be. Should I reply with some relational theory?
Sounds like a plan to me. I couldn't, it's been so long I just barely remember anything beyond 3NF,...
June 27, 2009 at 2:22 pm
GilaMonster (6/27/2009)
An interesting response here. Anyone understand what he's asking?http://www.sqlservercentral.com/Forums/Topic743113-391-1.aspx
The terms being used almost makes it sound like class work in a Modeling class.
June 27, 2009 at 10:03 am
panwar.jt (6/24/2009)
DECLARE @FileName varchar(50),
@bcpCommand varchar(2000)
SET @FileName = REPLACE('c:\authors_'+CONVERT(char(8),GETDATE(),1)+'.txt','/','-')
SET @bcpCommand = 'bcp "SELECT * FROM [demo2_rmps]..mms_menu " queryout...
June 26, 2009 at 10:39 pm
Look up these roles in Books Online (BOL)
SQLAgentUserRole
SQLAgentReaderRole
SQLAgentOperatorRole
June 26, 2009 at 10:23 pm
Supposedly, according to Books Online, the following should tell you:
select serverproperty('LicenseType')
Problem is when I run it on systems where I know the license mode of the servers I get DISABLED...
June 26, 2009 at 10:18 pm
Each user who will access the sever will need a CAL. All it really is, is a piece of paper that tells you how many users can access the...
June 26, 2009 at 10:11 pm
imSQrLy (4/24/2009)
June 26, 2009 at 10:02 pm
Did some reading myself on this subject and found basically the same thing you did. The following is from BOL:
Restrictions
On a 32-bit system, database mirroring can support a maximum...
June 26, 2009 at 9:52 pm
slimtonone (4/1/2009)
June 26, 2009 at 9:31 pm
I know it has been quite awhile since you posted this question, and I was wondering two things. First, were you able to resolve the issue or is it...
June 26, 2009 at 9:24 pm
knight (6/26/2009)
have to set a new...
June 26, 2009 at 9:09 pm
cdun2 (6/26/2009)
I was able to fix this problem yesterday. Thanks.
I have to agree, you came here and asked for help. Proper forum etiquette, even if you solved the problem...
June 26, 2009 at 4:58 pm
Heres a solution I have thrown together:
CREATE table dbo.tbl_prescription_dates (
Prescription_id int,
Date_Issued datetime)
--The Data to populate the table is:
INSERT INTO dbo.tbl_prescription_dates (Prescription_id, Date_Issued)
SELECT 1, getdate()
UNION ALL SELECT 1, DATEADD(d,-1,getdate())
UNION ALL...
June 26, 2009 at 1:58 pm
cdun2 (6/26/2009)
I've already fixed this problem. Thanks.
Glad to hear that. Wold you mind showing us how you resolved your problem?
June 26, 2009 at 1:57 pm
If, at the time of failure you still have access to the server and the transaction log, that is when you do a tail backup of the log file. ...
June 26, 2009 at 1:15 pm
Viewing 15 posts - 20,221 through 20,235 (of 26,490 total)