Viewing 15 posts - 1,936 through 1,950 (of 2,268 total)
You can use Microsoft Visio Professional to re-engineer your database schema into a Visio digram automaticaly, It is very easy to use.
September 23, 2008 at 7:06 am
You will need a different maintaince plan for T-Logs and Full Backups.
the ideal situation really depends on what your business needs are, a typical scenario might include a full back-up...
September 22, 2008 at 7:55 am
I may be missing something, but if you don't need the where condition why don't you remove it?
SELECT index, B.Value
FROM table1,A.table2, B.Table2
WHERE index = A.index AND
index = B.index2
Also...
September 22, 2008 at 6:04 am
I am happy you solved this, Thanks for the Feedback..
September 19, 2008 at 10:43 am
If your witness and primary failed then i guess you are in trouble , that is why it is recommended to put your witness on a different server in...
September 19, 2008 at 9:29 am
There is not a load of overhead from a witness, it really is just pinging the servers to see if they are still alive.
If high availibilty is your priority...
September 19, 2008 at 8:26 am
If the Id is not important then all you need to do is not connect a data flow to the ID column and it will populate itself.
If it is important...
September 19, 2008 at 8:20 am
Why do you not add a witness?
September 19, 2008 at 8:14 am
alad (9/19/2008)
September 19, 2008 at 7:46 am
Terri (9/19/2008)
Matt Miller (9/18/2008)
September 19, 2008 at 7:24 am
Insert the count into a table, and then execute the next step based upon what is in the table.
September 19, 2008 at 7:18 am
you could also create a SSIS package to do this, may be a bit overkill but will enable more fuctionality if needed in the future
September 19, 2008 at 6:51 am
Try using MAX and Group By for this.
SELECT
item_id as "Item ID",
( fifo_layer_number ) as "FIFO Layer Number",
( item_desc...
September 18, 2008 at 10:44 am
I have had a similar problem when i was setting up replication, it turned out to be an issue with running sql under a local account.
Could this be the...
September 18, 2008 at 10:30 am
Mark (9/17/2008)
DECLARE @S VARCHAR(30)
SET @S='99202 10060 99000 A6402'
SELECT LEN(@S)-LEN(REPLACE(@S,' ','')) AS NumberOfSpaces
I really like this solution nice and clean.
September 18, 2008 at 10:05 am
Viewing 15 posts - 1,936 through 1,950 (of 2,268 total)