Viewing 15 posts - 241 through 255 (of 1,409 total)
DJH-445911 (7/7/2015)
I have a DB with all user tables containing CreateDate, CreateUser, ModifiedDate, Modified User.
I need the Table name, row count, Min...
July 7, 2015 at 8:07 am
Grant Fritchey (7/2/2015)
July 2, 2015 at 1:52 pm
There is no official naming convention. Just choose one and stick with it. The most important thing is to be consequent and use the same notation overywhere.
July 2, 2015 at 6:56 am
Hi,
To use SQL Express is a very usable solution if you are not using the agent in some way. You need to additionally install the SSMS seprately, becuase it's not...
July 2, 2015 at 6:13 am
From the "etails.txt" I read the SQL Service is stopping at some moment. Are there any events logged in the Windows Event log? If so: does it state a cause...
June 30, 2015 at 4:30 am
In addition to what Gail mentioned: SQL has no space restriction on the table level. The space is defined at database/filegroup level. When the autogrowth setting on the file(s) of...
June 30, 2015 at 4:27 am
Hi
In SSMS 2008 the total size displayed in the properties of the database is including the LOG space. The free space displayed in the properties of the database is excluding...
June 30, 2015 at 2:34 am
Hi,
I use the following query to display blocked sessions including the head blocking process.
select
SPID
, sp.Status
, DB_NAME(dbid) as [database]
, (select TEXT from sys.dm_exec_sql_text(sp.sql_handle)) as last_cmd
, open_tran
, blocked
, case when waittime >...
June 30, 2015 at 2:17 am
CozzaroNero (5/22/2015)
DBCC SHRINKFILE: Page 4:24 could not be moved because it is a work...
May 22, 2015 at 2:33 pm
you can run "sp_who2" or "select * from sys.dm_exec_sessions" when connected to the server. This will show you the active connections. Column "hostname" shows the originating machinename.
The rows with SPID...
March 6, 2015 at 3:03 am
TSQL Tryer (12/29/2014)
I got a feeling I may have posted in the wrong forum.These are parameters in Report Builder which uses VBA.
My bad... I didn't notice the SSRS forum because...
December 29, 2014 at 1:52 pm
a quick (and dirty) solution using a TALLY table:
set nocount on
-- set a date variable to the start date of the range
declare @date date
set @date = '20130101'
-- create tally table...
December 29, 2014 at 9:46 am
Lynn Pettis has blogged about zome common date-routines. You can use these as a starting point to get your desired dates:
December 29, 2014 at 8:12 am
There's a workaround posted on the Microsoft Connect site you mentioned:
Gepost door JCBrown79 op 24-2-2014 om 4:44
1. Obtain the original file paths for the database using...
December 29, 2014 at 8:06 am
Viewing 15 posts - 241 through 255 (of 1,409 total)