Viewing 15 posts - 211 through 225 (of 2,647 total)
Sure... Disable access for groups that you don't want to access SQl Server.
October 16, 2012 at 11:35 am
Also, note that @@identity will return the last identity created, NOT necessarily the one that this transaction generated. you should use scope_identity() to use the indentity generated from the...
October 16, 2012 at 7:33 am
I figured it out! Drop a List control onto the report, get to its properties and make the dataset the same as the chart, and group by "schoolName" for the...
October 15, 2012 at 12:53 pm
Well then, it is possible to have 23! combinations, I believe. You will have to have a pretty sophisticated algorithm to figure this out. I would think this...
October 2, 2012 at 6:42 pm
Will they be sequential, or can it be any combination of rows?
October 2, 2012 at 3:12 pm
Nice article! However, I have no idea what DAX is... I can query it now, but I don't know where or why I would 🙂 I could Google it, but...
September 25, 2012 at 6:39 am
Since nobody has any info, am I to assume that this will not cause any problems? (I already know, assuming anything makes an...) Any thoughts? Do I need to...
September 25, 2012 at 6:29 am
The business case is to allow certain groups of people to do their own data fixes (I know, that sounds scary). So, we want them to place their script as...
September 19, 2012 at 3:42 pm
Sean Lange (9/19/2012)
SQLKnowItAll (9/19/2012)
CREATE TABLE #test(id int identity (1,1), filler VARCHAR(1))
GO
INSERT INTO #test(filler)
SELECT 'a'
GO 5
DECLARE @sql VARCHAR(150)
SET @sql = 'BEGIN TRAN SELECT * FROM #test SELECT...
September 19, 2012 at 2:25 pm
PaulB-TheOneAndOnly (9/19/2012)
SQLKnowItAll (9/19/2012)
It is possible to get the number of rows affected in a multiple statement transaction without adding the @@rowcount to a parameter for each statement?
As far as I...
September 19, 2012 at 1:22 pm
Here's some sample code:
CREATE TABLE #test(id int identity (1,1), filler VARCHAR(1))
GO
INSERT INTO #test(filler)
SELECT 'a'
GO 5
DECLARE @sql VARCHAR(150)
SET @sql = 'BEGIN TRAN SELECT * FROM #test SELECT * FROM #test...
September 19, 2012 at 1:22 pm
Here is the piece that gets us free space:
SELECT CAST(size*8/1024 - CAST(FILEPROPERTY(name, 'SpaceUsed' ) AS int)*8/1024 AS int) AS FreeSpaceMB
FROM sys.database_files
Thoughts?
September 14, 2012 at 9:16 pm
ScottPletcher (9/14/2012)
Hmm, no good reason is materializing in my mind right now.What method did you use to determine the freespace (change)?
Good question! I will find out. Just started at...
September 14, 2012 at 5:47 pm
Of course there are no data changes... Its read-only 🙂 I had worded the subject differently and didn't remove that part. Ugh...
September 14, 2012 at 2:35 pm
capn.hector (9/10/2012)
SQLKnowItAll (9/10/2012)
September 10, 2012 at 7:48 am
Viewing 15 posts - 211 through 225 (of 2,647 total)