Viewing 15 posts - 7,051 through 7,065 (of 8,753 total)
Matt Miller (#4) (9/15/2014)
Grant Fritchey (9/15/2014)
Eirikur Eiriksson (9/15/2014)
Grant Fritchey (9/15/2014)
But, that could cause...
September 15, 2014 at 2:38 pm
Quick thought, use the CONCAT function, no need to worry about overlapping operators
😎
DECLARE @INT INT = 10000;
DECLARE...
September 15, 2014 at 2:33 pm
ScottPletcher (9/15/2014)
Two quick possibilities:
1) Add an optional parameter to the proc which requires a certain value or the proc just exits (or...
September 15, 2014 at 2:12 pm
Grant Fritchey (9/15/2014)
But, that could cause errors in the code if it tries...
September 15, 2014 at 1:58 pm
Quick thought, don't ever use geometry for geographical data, use geometry with the appropriate SRID, normally 4326.
mickyT's solution is straight forward, just make certain that the direction is correct...
September 15, 2014 at 1:51 pm
f.welten (9/11/2014)
September 15, 2014 at 10:29 am
BWFC (9/15/2014)
Eirikur Eiriksson (9/15/2014)
😎
;WITH SAMPLE_DATA(MOBILE) AS
(SELECT * FROM
(VALUES
('9334457582')
...
September 15, 2014 at 3:46 am
Quick solution, allows for variable length input
😎
;WITH SAMPLE_DATA(MOBILE) AS
(SELECT * FROM
(VALUES
('9334457582')
...
September 15, 2014 at 3:16 am
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
Viewing 15 posts - 7,051 through 7,065 (of 8,753 total)