Viewing 15 posts - 1,351 through 1,365 (of 5,103 total)
I am not sure what kind of hardware are you using but In the past My network admins have "tunneled" SQL server trafic for me bewtween the two offices making...
December 3, 2007 at 3:54 pm
U (12/3/2007)
December 3, 2007 at 3:49 pm
I have been in situations in which if I would have not known about some inner workings of the SAN serplication the company was using I would not have been...
December 3, 2007 at 3:47 pm
... I know Profiler can do this but I am looking for something easier ....
Profiler is *very* easy I don't understand why are you saying that you need something "easier"
December 3, 2007 at 3:42 pm
This is actually very useful for BACKUPs that you may want to make accross the network!!
December 3, 2007 at 3:34 pm
I Second the ROLLUP sugesstion
In addition COMPUTE and COMPUTE BY clauses are provided for backward compatibility only.
Cheers,
November 30, 2007 at 1:42 pm
Antares686 (11/30/2007)
Sorry I am working to much today, here is what the example should read...
That is when I would go for coffee 😀
November 30, 2007 at 1:37 pm
And one more thing that people have not mentioned about clustering is not the individual parts but the "entire" system what should be cluster-certified!!!
November 30, 2007 at 1:35 pm
After the objects are created on the publisher you need to use sp_addarticle an run the snapshot agent.
the distributor will pick those up an apply them.
November 30, 2007 at 1:19 pm
First: Make sure you take a look at the execution plan and you are seen no table scans...
Second: Check that you are actually retrieving what you need and no more.
......
November 30, 2007 at 1:06 pm
declare @cmd_str varchar(2000)
declare @result int
create table #t1 (info varchar(255) )
set @cmd_str = 'bcp "...." queryout ....'
insert into #t1
exec @result = master..xp_cmdshell @cmd_str
select replace(info,' rows copied.','')
from #t1
where info like '%rows...
November 30, 2007 at 12:51 pm
From BOL:
The order of precedence for the logical operators is NOT (highest), followed by AND, followed by OR. Parentheses can be used to override this precedence in a search condition....
November 30, 2007 at 12:39 pm
Or if you are really hard pressed take a look at "openrowset"/"opendatasource"
November 30, 2007 at 12:35 pm
I also think this was a tricky question because you can use ANY credentials with OPENROWSET 🙁
November 30, 2007 at 8:02 am
My experience has been similar to Josh's
addarticle in Transactional replication "creates" the storeprocedures for me on the subscribers. I have not found the name truncation issue that Josh mention though.
Cheers,
November 30, 2007 at 7:42 am
Viewing 15 posts - 1,351 through 1,365 (of 5,103 total)