Viewing 15 posts - 1 through 15 (of 55 total)
Thank you.
Runnning sp_table_privileges as a sys admin returned results similar to what Gail posted. Which doesn't show me table permissions, just who can grant permissions??? (right?)
I'm not sure what...
August 26, 2016 at 5:06 am
GilaMonster (8/23/2016)
August 24, 2016 at 6:57 am
Thank you, Scott.
So I take the same code and try to create a stored procedure by adding this:
IF OBJECT_ID('usp_DataLoadTime', 'P') IS NOT NULL
DROP PROC usp_DataLoadTime
GO
CREATE PROC usp_DataLoadTime
AS
BEGIN
... <code from above....>
END
...and...
October 16, 2014 at 2:18 pm
Steve Jones - SSC Editor (10/15/2014)
Simple. Make it row based, and you can use Merge, but I'd just do.
create trigger
update LastTime set time = i.time
from...
October 15, 2014 at 1:13 pm
Steve Jones - SSC Editor (10/14/2014)
October 14, 2014 at 1:54 pm
Steve Jones - SSC Editor (10/14/2014)
In terms of the how you do this, lots of ways, but the why isn't listed.
Thank you, Steve
I would like to save a record...
October 14, 2014 at 11:49 am
Tavis Reddick (8/19/2014)
August 19, 2014 at 5:38 am
Going from bad to worse...
Whether I use the query directly in a report, or put the query in a stored procedure, this is the result:
<?xml version="1.0" encoding="utf-8"?><Report xsi:schemaLocation="SQLTestServerTest2
August 18, 2014 at 9:56 am
Allow me to illustrate
USE MyTempDB
GO
IF OBJECT_ID('MyTempDB..SomeTable1','U') IS NOT NULL
DROP TABLE SomeTable1;
CREATE TABLE SomeTable1
(
...
August 14, 2014 at 8:14 am
Thanks, Jack
I very much appreciate the time that you took to clarify this for me. We have TFS, but it's currently only used for c# projects.
Time to learn...
August 14, 2014 at 7:02 am
If you can possibly describe how you get the file to output, I would greatly appreciate it.
I have a query where I can get the XML that I need, but...
July 27, 2014 at 1:16 pm
Please post your solution!
Thanks...
July 25, 2014 at 7:07 pm
Apparently, the Stairway to SQL Server Indexes uses the Adventureworks 2005 database.
I have tried (without success) to install the Adventureworks 2005 database on SQL Server 2012.
Perhaps an updated Stairway, based...
July 19, 2014 at 7:15 pm
The best thing to do is set up Reporting Services and learn the basics of that. It is extremely easy to set up and you can scale it out...
July 19, 2014 at 12:08 pm
Viewing 15 posts - 1 through 15 (of 55 total)