Viewing 15 posts - 2,356 through 2,370 (of 2,462 total)
For the crowd you describe I think the SQL tutorial at W3Schools is a good start (my 2ยข). Like Jeff mentioned they have a "Try it yourself" section and they...
-- Itzik Ben-Gan 2001
November 27, 2012 at 3:05 pm
eugene.pipko (11/27/2012)
Thanks, what if I need to change font-weight at <tr> level?How do I access <tr>?
The top row (the first instance of the TR tag) you could add any attributes...
-- Itzik Ben-Gan 2001
November 27, 2012 at 1:38 pm
jjolk (11/21/2012)
-- Itzik Ben-Gan 2001
November 27, 2012 at 10:46 am
eugene.pipko (11/19/2012)
Thank you for reply,So, for every <td>, if I need to change an attribute, I'd need to select 'td/@style' = ......?
Thanks,
Yes.
P.S. W3Schools is the best place to go...
-- Itzik Ben-Gan 2001
November 26, 2012 at 4:15 pm
karthik M (11/26/2012)
All,what are all the new "Optimization Techniques" available in SQL 2012 which is not available in SQL 2008?
On the new T-SQL optimization I highly recomend Microsoft SQL Server...
-- Itzik Ben-Gan 2001
November 26, 2012 at 3:09 pm
jarid.lawson (11/26/2012)
I tried the Tasks > Copy Database option. I made it most of the way through, but...
-- Itzik Ben-Gan 2001
November 26, 2012 at 2:46 pm
Backup/Restore is best.
You can also do a copy by: right-click your db >> Tasks >> Copy Database then go through the wizard.
-- Itzik Ben-Gan 2001
November 26, 2012 at 2:26 pm
Guras (11/26/2012)
It is a transactional replication. It is strange that I cannot find that job in my SQL Agent job list.
The agent job will be running whereever the job is...
-- Itzik Ben-Gan 2001
November 26, 2012 at 1:54 pm
Guras (11/26/2012)
Unfortunately we are in the prod.
First, I concur with MyDoggieJessie - check for filters, check the agent job to see if it is running without error...
I don't know...
-- Itzik Ben-Gan 2001
November 26, 2012 at 1:47 pm
Guras (11/26/2012)
I re ran the agent but still the rows are mising in the subscriber.
I going to assume we're not in Prod...
If the snapshot agent ran correctly your tables should...
-- Itzik Ben-Gan 2001
November 26, 2012 at 1:18 pm
You can accomplish this by re-running the snapshot agent for that subscription.
-- Itzik Ben-Gan 2001
November 26, 2012 at 11:49 am
Based on the info provided:
-- This table has the name of every department
DECLARE @dept TABLE (
deptNbr int primary key,
department varchar(10) NOT NULL );
-- This is where department goals are...
-- Itzik Ben-Gan 2001
November 21, 2012 at 12:29 pm
-- place to test the insert
DECLARE @targetTable TABLE (val1 varchar(30), val2 varchar(30));
-- the value fed to your query
DECLARE @splitMe varchar(40) = '9279-1^Respiratory Rate^LOINC';
;WITH x(a,b) AS
(SELECTLEFT(@splitMe, CHARINDEX('^',@splitMe)-1),
RIGHT(@splitMe, LEN(@splitMe)-CHARINDEX('^',@splitMe))
)
INSERT...
-- Itzik Ben-Gan 2001
November 21, 2012 at 10:34 am
If by "slows down the entire database" you mean that running these reports slows down other, non-reporting activity then my advise would be to do what Eugene was saying: consider...
-- Itzik Ben-Gan 2001
November 21, 2012 at 9:50 am
Lokesh Vij (10/10/2012)
SELECT dtStartDate,
(SELECT Max(dtRunDate)
...
-- Itzik Ben-Gan 2001
October 11, 2012 at 8:19 am
Viewing 15 posts - 2,356 through 2,370 (of 2,462 total)