Viewing 15 posts - 2,896 through 2,910 (of 8,761 total)
sqlserverDBA2016 (11/5/2016)
I wanna move them to 2 new data and log directories
Using backup and restore but would like to keep the...
November 7, 2016 at 2:03 am
juniorDBA13 (11/7/2016)
It will be just a straight copy from SQL Server to a single source.
It will be just a copy of...
November 7, 2016 at 1:45 am
Question, do you see the trigger in sys.triggers?
😎
SELECT
OBJECT_NAME(STRG.parent_id) AS TABLE_NAME
,STRG.name ...
November 7, 2016 at 1:42 am
abhas (11/7/2016)
Now again requirement has changed. Now instead of increment, new logic is as below:
First letter of firstname + LastName.
If username alreadu exists then create as:
First ...
November 7, 2016 at 1:35 am
alfred.h.hernandez (11/7/2016)
If I run...
November 7, 2016 at 1:21 am
Deny Christian (11/7/2016)
I have a Supplier data :
COMPARE:
SERVER A : V, ...
November 7, 2016 at 1:01 am
alfred.h.hernandez (11/7/2016)
Unfortunally I can't see wierd with memory och I/O.
But I just saw that if I display the results to text instead of grid there is...
November 7, 2016 at 12:57 am
Don Halloran (11/6/2016)
November 7, 2016 at 12:31 am
Quick suggestion that concatenates all step messages into a single column
😎
SELECT
sj.name
,sj.enabled
,STUFF(
(
...
November 7, 2016 at 12:16 am
For fun, here is an alternative method
😎
USE TEEST;
GO
SET NOCOUNT ON;
;WITH SAMPLE_DATA(CID,C1,C2,C3) AS
( SELECT CID,C1,C2,C3
FROM (VALUES
(1,'aa', '100', 'vv')
...
November 7, 2016 at 12:01 am
Have you looked into using Extended Events for i.e. triggering a poll etc.?
😎
November 6, 2016 at 11:15 pm
sqlfriends (11/4/2016)
I would...
November 6, 2016 at 11:10 pm
Forgot to mention the MSDN online tutorials Tabular Modeling (Adventure Works Tutorial)
😎
November 6, 2016 at 11:00 pm
berryber (11/5/2016)
Situation:
I have a package which runs over a selection...
November 6, 2016 at 10:53 pm
alfred.h.hernandez (11/6/2016)
I recently discovered that when I query a table (anyone I've tested) and the results are more than 1000 rows, Management Studio keeps hanging/lagging.
The more rows the result shows...
November 6, 2016 at 10:44 pm
Viewing 15 posts - 2,896 through 2,910 (of 8,761 total)