Viewing 15 posts - 15,046 through 15,060 (of 26,486 total)
Craig Farrell (9/30/2010)
CELKO (9/30/2010)
September 30, 2010 at 12:43 pm
Remove the comma leaving the space and change the STUFF parameters 1,2 to 1,1 and see what happens.
September 29, 2010 at 12:19 pm
If your mirror instance and witness are both on Server B and the server itself goes down, you will lose quorum and the principal database(s) on Server A will be...
September 29, 2010 at 9:11 am
nadabadan (9/28/2010)
CirquedeSQLeil (9/28/2010)
Another option will be to modify the app so that read type connections are the...
September 29, 2010 at 8:54 am
You can also point out the follwing:
Server A -- SQL Server 2005 Standard Edition Principal Server
Server B -- SQL Server 2005 Standard Edition Mirror Server
...
September 28, 2010 at 8:47 pm
In addition, I think the following code snippet will also help:
declare @FileName varchar(128);
select
@FileName = 'xxx_xxxx.xxx.xxxxx_xxxxxxxx_xxxx' +
'_' + SUBSTRING(CONVERT(varchar(10), getdate(), 10),1,2) +
...
September 28, 2010 at 8:10 pm
See if the following helps you: http://www.nigelrivett.net/SQLTsql/CheckIfFileExists.html
September 28, 2010 at 8:03 pm
Check my blog, you'll find some useful date function routines there.
September 28, 2010 at 7:53 pm
Using SQL Server 200, no WHILE loop required:
DECLARE @test-2 TABLE
(ID INT,
NAM VARCHAR(50));
INSERT INTO @test-2
SELECT 1,'RAM'
UNION ALL
SELECT 1,'PRASAD'
UNION ALL
SELECT 2,'SQL'
UNION ALL
SELECT 2,'SERVER'
UNION ALL
SELECT 2,'CENTRAL'
UNION ALL
SELECT 3,'FAMOUS'
UNION ALL
SELECT 3,'BOOK';
SELECT * FROM...
September 28, 2010 at 7:45 pm
Triggers would not necessarily be the right way to go. If server B is a failover server, you'd have to disable the triggers on a failover.
Are you trying to...
September 28, 2010 at 7:31 pm
Possibly, but it would help if you would post the error message you are receiving. I am guessing that when runnng as a job it is running on the...
September 26, 2010 at 6:15 pm
We have to make some assumptions here since you haven't provided all the necessary details.
Here are my assumptions:
The procedures s1, s2, s3, and s4 are called in sequence. Procedure...
September 24, 2010 at 8:15 am
Okay Tom and Bob, I think that is enough. Just agree to disagree and let's move on.
And no, I'm not going to check out the link in that thread...
September 23, 2010 at 9:08 pm
Paul White NZ (9/22/2010)
GilaMonster (9/22/2010)
<several people>: Change the index thusly
OP: That won't help.
<couple people>: Did you try it?
OP:...
September 23, 2010 at 7:39 am
CirquedeSQLeil (9/17/2010)
Just curious if anybody here has ever walked out of an interview...What would be your justifications for doing so?
I've terminated an interview when it was obvious the pay was...
September 17, 2010 at 3:25 pm
Viewing 15 posts - 15,046 through 15,060 (of 26,486 total)