Viewing 15 posts - 4,891 through 4,905 (of 8,761 total)
bhaskar.thapa (7/20/2015)
Currently i have set of queries which i run for data extraction and result pasted in Excel table so that my pivot table and Chart gets populated along...
July 20, 2015 at 6:02 am
Quick questions, what are the server's specs? What is the cost threshold for parallelism? What are the tempdb configurations? Can you post the execution plans? Any indices on the table?
๐
Edit:typo
July 19, 2015 at 11:18 am
Although I havenยดt seen anything stating that the temporal tables are Enterprise only feature, itยดs certainly starting to look like it is.
๐
July 19, 2015 at 4:15 am
kapil_kk (7/18/2015)
I was trying to create temporal table feature which gets introduced in SQL Server 2016 but I am getting this error while trying to create it;
Cannot enable compression...
July 19, 2015 at 12:27 am
jasona.work (7/17/2015)
djj (7/17/2015)
crookj (7/17/2015)
Ed Wagner (7/17/2015)
Jeff Moden (7/16/2015)
SQLRNNR (7/16/2015)
clamfn_clam ๐
Oyster
Pismo (The Great Clam Festival)
Geoduck
Dirty
Read
July 18, 2015 at 6:57 am
Peter19898 (7/17/2015)
One of our SQL servers ran out of disk space and we received an error stating that the transaction log file was full for one of our Sharepoint content...
July 18, 2015 at 1:14 am
Looks to me like a permission issue (the credentials used for running the package), was anything changed that could affect this. Seen similar in the passed where permissions to read...
July 18, 2015 at 12:29 am
darren-hong (7/17/2015)
I have the following attributes in this Table A.
1) Location_ID (int)
2) Serial_Number (nvarchar(Max))
3) KeyID (nvarchar(max)
4) Reference_Address (nvarchar(max)
5) SourceTime (datetime)
6) SourceValue (nvarchar)
I am trying to create 1000000 dummy records...
July 17, 2015 at 7:23 am
Lynn Pettis (7/16/2015)
SET NOCOUNT ON;
DECLARE @TEST_NULL_SORT TABLE (AREA VARCHAR(50) NOT NULL, CATEGORY...
July 16, 2015 at 12:02 pm
Further on Gail's and Steve's replies, don't ponder on how before you can identify and quantify the potential problem. If there are only 10-20 inserts per second, each record would...
July 16, 2015 at 11:56 am
Bharatvip (7/15/2015)
July 16, 2015 at 1:32 am
Arjun SreeVastsva (7/16/2015)
Hey,what is better values for Buffer Cache Hot Ratio in SQL Server 2012.
is the values changed from 2008r2 to 2012?
Depends on few things but one aims as close...
July 16, 2015 at 1:10 am
Does not exist in SQL Server but a workaround could be adding a sort column
๐
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @TEST_NULL_SORT TABLE (AREA VARCHAR(50) NOT NULL, CATEGORY VARCHAR(50) NULL);
INSERT INTO...
July 15, 2015 at 1:04 pm
Quick thought, normally I would script out A, do whatever modificarions needed and then run the scripts on B and full rebuild.
๐
July 15, 2015 at 11:38 am
halifaxdal (7/15/2015)
Thanks Drew, Eirikur, ScottI have decided to take your suggestion and create another bridge to avoid using the painful concatenated values in a column.
Glad you made the right decision,...
July 15, 2015 at 11:33 am
Viewing 15 posts - 4,891 through 4,905 (of 8,761 total)