Viewing 15 posts - 7,306 through 7,320 (of 13,876 total)
CONCAT( edit.ruleid, qr.description , 'Edit Code' )
You know about the perils of the (NOLOCK) hint, right?
April 7, 2016 at 9:05 am
May I ask why you are converting Row_Number() to an INT everywhere?
April 7, 2016 at 7:35 am
MadAdmin (4/7/2016)
amitsingh308 (4/7/2016)
Create table OrdersDetails(OrderNo varchar(30),ItemNo Varchar(20),ItemName Varchar(50))
insert script is as under:
Insert into OrdersDetails (OrderNo,ItemNo,ItemName) Values('122314','1','sdfasfasd123')
Now I want to change sequence number for order...
April 7, 2016 at 6:55 am
SQL!$@w$0ME (4/7/2016)
We are planning to enable CDC for one of our databases.
Can we restore a copy on a different server (WITH KEEP_CDC option) and run the initial/incremental load...
April 7, 2016 at 6:38 am
Unticking the 'Sensitive' check box does not reveal the password, in case you were wondering.
April 6, 2016 at 2:19 pm
SQLTougherGuy (4/6/2016)
If you are using integrated security, what security issues concern you?
I guess my question should be... "What types of security issues will I have to concern myself with...
April 6, 2016 at 2:17 pm
SQLTougherGuy (4/6/2016)
I am going to try and explain what I am looking to do here, so please bear with me :-).
I have several SSIS packages that run off of...
April 6, 2016 at 1:43 pm
amitsingh308 (4/6/2016)
I have a transactional table which contains following columns
OrderNo. ItemNo. ItemName
But there is an issue I need to rearrange the item number if order number...
April 6, 2016 at 10:41 am
Jeff Moden (4/6/2016)
Phil Parkin (4/6/2016)
Lynn Pettis (4/5/2016)
And now the attitude arrives.Check out the most recent 'I am proficient ...' comment. I nearly regurgitated my breakfast cereal.
Link? I'd just like...
April 6, 2016 at 7:55 am
IF OBJECT_ID('tempdb..#a','U') IS NOT NULL
DROP TABLE #a;
CREATE TABLE #a (col1 sysname);
INSERT #a
(
...
April 6, 2016 at 7:22 am
Lynn Pettis (4/5/2016)
And now the attitude arrives.
Check out the most recent 'I am proficient ...' comment. I nearly regurgitated my breakfast cereal.
April 6, 2016 at 4:50 am
dallas13 (4/5/2016)
Thanks but is there any command to find upload\download speed somehow?
I am assuming that your FTP is running over the Internet. Try running this[/url] test, from both servers. Should...
April 5, 2016 at 1:59 pm
dallas13 (4/5/2016)
So we have 1 server in east coast and other in TX rackspace.
We have around 2 GB zipped db backup sitting in TX.
I have FTP job running through SSIS...
April 5, 2016 at 1:33 pm
sks_989 (4/5/2016)
CREATE FUNCTION SplitString
(
@Input NVARCHAR(MAX),
...
April 5, 2016 at 12:33 pm
Jon.Morisi (4/5/2016)
...correct?
The link for Microsoft SQL Server Data Tools - Business Intelligence...
April 5, 2016 at 11:23 am
Viewing 15 posts - 7,306 through 7,320 (of 13,876 total)