Viewing 15 posts - 211 through 225 (of 272 total)
Is there an error for the distribution agent?
February 28, 2010 at 7:58 pm
There is no command that will do a partial backup, that would not really be a backup at all.
You can go table by table with "select top 10 * from...
February 28, 2010 at 7:55 pm
Unless the reslults were saved to a file, they are gone to binary heaven. 🙁
You will need to rerun the query.
February 28, 2010 at 7:44 pm
It happens when SSMS is autosaving a file and your My Documents folder is remote or off-line.
February 26, 2010 at 8:18 am
The best way to do this is through a tool. I believe Redgate has something that does this.
If you just want a list of columns that are not common...
February 25, 2010 at 10:08 am
river1 (2/25/2010)
when i do this command:select
serverproperty ('productversion')
if the first digit returned by the string is 8 then 2000
if the first digit returned by the string is 9 then 2005
..........
select...
February 25, 2010 at 9:52 am
What are you trying to do with the case statement?
February 25, 2010 at 9:42 am
In general, a well-tuned large table shouldn't be a performance issue.
One question I would have is do you really need 11 indexes on the table, given that fact that you...
February 23, 2010 at 4:07 pm
I don't understand what you mean by 'master' and 'transactional' tables.
There is a master database. Is this what you mean? A transactional table is any table that stores...
February 23, 2010 at 9:09 am
You can setup a transactional replication that does not delete records. You can also use filters. Using these, you can replicate your adds and updates to your...
February 22, 2010 at 8:59 pm
You could use randon row sampling in SSIS.
February 22, 2010 at 1:50 pm
Not really sure what you're asking here. Are you wanting to know parent to child relationships?
Without a diagram, you can't really tell at a glance, but you could trace...
February 22, 2010 at 1:38 pm
Sean-752587 (2/22/2010)
WayneS (2/22/2010)
Sean-752587 (2/22/2010)
Hi jcrawf02How would you change it to avoid the cast?
like this... you don't need to cast ROW_NUMBER to an int... it already is
select top 100
case
when...
February 22, 2010 at 12:38 pm
CirquedeSQLeil (2/22/2010)
GSquared (2/22/2010)
SET NOCOUNT ON;
DECLARE @Table1 TABLE (
ID int IDENTITY PRIMARY KEY,
Number int);
DECLARE @Number INT;
SELECT @Number = 1;
WHILE @Number <= 100
BEGIN
INSERT INTO @Table1...
February 22, 2010 at 9:49 am
Viewing 15 posts - 211 through 225 (of 272 total)