Viewing 15 posts - 1,486 through 1,500 (of 7,636 total)
parth83.rawal (10/2/2009)
I have an EXE file which i would like to run, what i am doing is running following script but in void.... 🙁
declare @sqlcmd varchar(200)
SET @sqlcmd = 'WinWSSList.exe'
EXEC master..xp_cmdshell...
October 2, 2009 at 10:28 am
peter-757102 (10/2/2009)
Jeff Moden (10/2/2009)
October 2, 2009 at 10:19 am
Jeff Moden (10/2/2009)
RBarryYoung (9/23/2009)
Jeff Moden (9/23/2009)
RBarryYoung (9/23/2009)
Great article, Lynn! I might finally be ready to stop cross-joining master..syscolumns. 🙂I already quit... heh... I use Master.sys.All_Columns now. 😛
Heh. ...
October 2, 2009 at 9:14 am
Also i was asked about clustering if you have 5 nodes where one is passive and rest are active and you are planing to add more nodes then what would...
October 1, 2009 at 4:31 pm
Dynamic pivoting can be useful for summarizing and consolidating Attribute type relations, but not for filtering it. And certainly not if performance is a concern.
And frankly, most client languages...
October 1, 2009 at 11:28 am
Brandon Forest (9/30/2009)
..My first step is to create validation schemas of each of the tables to ensure that data isn't corrupted in the ETL process.
Hmmm, I just realized what you...
October 1, 2009 at 11:21 am
Brandon Forest (10/1/2009)
I chose not to use replication because I have a personal bias against it, because I don't like the overhead associated with the Replication GUID field.
I...
October 1, 2009 at 11:13 am
RBarryYoung (10/1/2009)
October 1, 2009 at 11:10 am
OK, but why use XML message types in Service Broker, if they aren't helping you (and I don't think that they do in this particular case)? Instead just create...
October 1, 2009 at 11:05 am
Comparative performance is tough to generalize between these options because it ultimately depends how many columns there will really be, and how large a range will you have to search...
October 1, 2009 at 10:56 am
On balance, my recommendation would probably be to use the Sparse columns if you have SQL Server 2008, and then to use the Attributes approach, within limits. That is,...
October 1, 2009 at 10:51 am
tdemille-1102706 (10/1/2009)
I have three approaches that I'm considering and hoping for input and/or a different approach.
* Current approach: Add more bit fields, sql queries are built...
October 1, 2009 at 10:34 am
Control-flow works like you probably think it does. You drop tasks on it and then, connect their arrows to control the order and conditions of execution.
Data-flow, is really the...
October 1, 2009 at 10:00 am
Hmm, what is the UID value that it lists?
Also, try this query and see if anything comes back:
SELECT * FROM sysobjects WHERE [name] LIKE 'dbo%'
October 1, 2009 at 9:52 am
How are you determining that this second table1 is created with a Null owner?
It seems much more likely to me that the first table1 actually has the name [dbo].[dbo.table1], which...
October 1, 2009 at 8:20 am
Viewing 15 posts - 1,486 through 1,500 (of 7,636 total)