Viewing 15 posts - 7,066 through 7,080 (of 8,760 total)
Here is my suggestion
Leave the identity to the destination table, don't use the identity_insert. Consider dropping the non clustered indexes and recreate them after the load. In addition, an SSIS...
September 15, 2014 at 1:46 am
elham_azizi_62 (9/15/2014)
hi.how to reach output of checkDB?I post one of error wich was occured.
Either re-run the command or check for SQLDUMPnnnn.txt file in the SQL Server Log directory.
One error is...
September 15, 2014 at 1:38 am
Another option if the sa login is not available is to run SSMS as Administrator and make the necessary changes.
😎
September 15, 2014 at 1:33 am
WhiteLotus (9/15/2014)
Eirikur Eiriksson (9/15/2014)
WhiteLotus (9/14/2014)
Hi All ,How to disable and enable the store procedure?
cheers
Quick question, by disabling it do you mean make it do nothing, make it disappear from the...
September 15, 2014 at 1:30 am
WhiteLotus (9/14/2014)
Hi All ,How to disable and enable the store procedure?
cheers
Quick question, by disabling it do you mean make it do nothing, make it disappear from the user's view or...
September 15, 2014 at 12:35 am
karthik babu (9/14/2014)
I got this basic question while inserting huge number of records from production table to the test environment. Please let me know.Thanks in advance.
Quick questions:
1. Is...
September 14, 2014 at 11:05 pm
nam.lenhat (9/14/2014)
I am using SQL 2014, but having problem :
When I use query in a table (having big data ..over one hundred million rows). I just query about...
September 14, 2014 at 10:52 pm
Here is a quick example using a Tally/Numbers CTE
😎
USE tempdb;
GO
SET NOCOUNT ON
/* Generate a set of dates at a given interval
from the start date untill the end...
September 14, 2014 at 10:02 pm
charipg (9/14/2014)
B. No result , i mean no dbs showing as cdc enabled.
actually i checked your ...
September 14, 2014 at 1:37 pm
Quick thought, do you have an example of the XML, depending on the complexity and structure one might find something that fits the purpose.
😎
September 14, 2014 at 3:18 am
You will find instructions here
😎
September 14, 2014 at 3:12 am
girl_bj (9/14/2014)
May I know what does the 7 means?SUBSTRING(SD.ColumnA,1,CHARINDEX(' ',SD.ColumnA,7) -1 ) AS FIXED_PART
It tells the charindex where to start searching for the character.
😎
Hotel A146 10/25/2014 hotel...
123456789012345678901234567890
...
September 14, 2014 at 2:22 am
First, apologies for the piecemeal like answers:-)
From the top of my head, most likely causes:
A. Insufficient permissions for the SSIS execution user account, the "user" doesn't have enough/right permissions.
B. CDC...
September 14, 2014 at 1:54 am
Quick thought, when you pass the uniqueidentifier value to the procedure, you will have to pass it as a string, here is an example:
😎
USE tempdb;
GO
SET NOCOUNT ON
IF OBJECT_ID('dbo.SAMPLE_UNIQEID') IS NULL
BEGIN
CREATE...
September 14, 2014 at 12:40 am
elham_azizi_62 (9/13/2014)
SQL Server detected a logical consistency-based I/O error: incorrect pageid (expected 1:4911282; actual 1:4911010). It occurred during a read...
September 14, 2014 at 12:19 am
Viewing 15 posts - 7,066 through 7,080 (of 8,760 total)