Viewing 15 posts - 1 through 15 (of 206 total)
If looks as if you need a grouped report similar to this
BrandURL
Alain Mikli http://www.800.com
•Sunglasses
November 16, 2010 at 11:46 am
Additional info...
I've looked through articles and confirmed it does not exist.
I dropped and recreated the subscription.
Based on sp_addarticle I'm thinking that the call to sp_MSdrop_article is occuring inside sys.sp_MSrepl_addarticle.
This...
September 3, 2010 at 1:10 pm
So are you saying I can ignore this message:
Contract DEFAULT is not bound to service //TgtDB/Test/TargetService ???
April 13, 2010 at 10:26 am
Why would you want SQL 2000? It was removed from mainline support over a year ago?
Try the 2005 Express version http://www.microsoft.com/downloadS/details.aspx?familyid=220549B5-0B07-4448-8848-DCC397514B41&displaylang=en
July 21, 2009 at 8:22 pm
Is it possible to combine the databases into a single database with different schemas?
scehma1.table1 references schema2.table. This is a solution I used when migrating Sybase databases to SQL Server and...
February 27, 2009 at 10:18 am
Praveen, I can provide or point you to several white papers on MySQL to SQL Server migrations not the other way around. I suggest you look in a MySQL forum.
February 26, 2009 at 7:58 am
How about granting exec to the user?
Such as grant exec on {stored proc name} to {X}
DAB
November 21, 2008 at 8:48 am
Then try
DELETE from License_Table
where license_date between '2008-11-15' and '2008-11-16'
DAB
November 20, 2008 at 2:21 pm
bpowers (11/20/2008)
November 20, 2008 at 2:11 pm
Use RECONFIGURE WITH OVERRIDE
DAB
November 20, 2008 at 11:48 am
Yes it does...
strContains = split( "cats dogs mice fish")
will return an array of 4 values
strContains(0) = "cats", etc.
In addition, you can specify different delimiter values (the above...
November 20, 2008 at 7:53 am
Since you're using VBScript, why not use the Split() function?
DAB
November 19, 2008 at 3:26 pm
As far as I can tell there is little difference between these two statements:
Select * from myTable where textField like '%Cats and Dogs%'
Select * from myTable where CONTAINS(textField, '"Cats and...
November 19, 2008 at 9:08 am
Exactly Jeff! I've had a db start to grow in the middle of the day during peak web traffic and it brought everything to a crawl until the growth completed....
November 19, 2008 at 8:00 am
Viewing 15 posts - 1 through 15 (of 206 total)