Viewing 15 posts - 541 through 555 (of 9,641 total)
If you have a foreign key defined on a column you cannot leave a value in the column that is not in the referenced table. Here are your options:
1....
November 17, 2014 at 6:32 am
If the server or SQL Agent is not running when the job is scheduled to run it will not run until the next scheduled time when the server/SQL Agent is...
November 14, 2014 at 10:51 am
rodjkidd (11/13/2014)
As Jack mentioned the Summit, and about seeing me nearly every day, I had a quick look through the photos I took...Jack in community zone / teacher mode 😀
Rodders...
I...
November 13, 2014 at 9:28 am
Wow, the thread has been quiet lately.
Had a great time at the PASS Summit last week where I got to see many threadizens. Ran into Rodders the...
November 13, 2014 at 8:48 am
SQL Guy 1 (11/13/2014)
zedtec (11/13/2014)
I have run a trace but no slow queries found (all running under 5...
November 13, 2014 at 8:45 am
Truncating a table or deleting data from a table does not release space from to the operating system from the database file(s), if does make that space available for re-use...
November 13, 2014 at 8:35 am
You can find the last SQL Server restart using sys.dm_os_sys_info and the sqlserver_start_time column.
Before you DROP any indexes you need to:
1. Save the create scripts off somewhere.
2. Check...
November 13, 2014 at 8:23 am
zedtec (11/13/2014)
There are no slow running queries.
So if there are no slow running queries what is the definition of slow performance?
Are you collecting any metrics to determine what might be...
November 13, 2014 at 8:12 am
zahid.nawaz (11/13/2014)
schemaName, tablename, indexname, fillfactor
dbo Items ...
November 13, 2014 at 7:56 am
PearlJammer1 (11/13/2014)
November 13, 2014 at 7:37 am
That's the actual creation of the index. I believe the percent_complete column in sys.dm_exec_requests is updated for CREATE INDEX so you can monitor it using that. I use...
November 13, 2014 at 7:34 am
zahid.nawaz (11/13/2014)
Corbett: what do u mean about to adjust fill factor? should it not be 80% of page?
You state that the pages are 80% full when you check fragmentation,...
November 13, 2014 at 6:44 am
Eirikur Eiriksson (11/12/2014)
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.TBL_DATES') IS NOT NULL DROP...
November 13, 2014 at 6:36 am
manie (11/13/2014)
November 13, 2014 at 6:32 am
Sean Lange (11/12/2014)
Without more details it is impossible to say. It may be permissions for the new table?
I'd have to agree with Sean on this one, that there is something...
November 12, 2014 at 10:46 am
Viewing 15 posts - 541 through 555 (of 9,641 total)