Viewing 15 posts - 661 through 675 (of 13,460 total)
the browser service helps application sort out the right place to connect.
so assume that something is connecting with a connection string like this, and your sole SQL server...
Lowell
January 31, 2017 at 8:25 am
I'm a bit confused by what you mean when you say "Not sending data" when connecting via a port vs working file when using a named instance. i would expect...
Lowell
January 31, 2017 at 8:16 am
are you sure you've assigned a static port in the SQL configuration manager?
The SQL Browser Service tells incoming connections to your instances which port to use, whether it's static...
Lowell
January 31, 2017 at 8:05 am
i think your group by needs to round the timestamp to your interval of 20 seconds(DATEPART(SECOND, datetimestamp) %20, i think?) or at least to the nearest minute, which is a...
Lowell
January 31, 2017 at 7:11 am
I've seen far too many SSAS experts leave out foreign keys in the sources they build to fill the cubes,because they think the source it's coming from already has referential...
Lowell
January 30, 2017 at 4:55 am
COPY or MOVE? there's a difference!
copy duplicates the data, so you have to script all the objects out, change the schema in that script , and create the objects...
Lowell
January 27, 2017 at 6:25 am
So I created a new schema. Now I need to move the stored...
Lowell
January 26, 2017 at 2:37 pm
Lowell
January 24, 2017 at 10:38 am
i believe the specific error/issue is here:@command1='INSERT #Sou
it has to be marked with...
Lowell
January 24, 2017 at 10:31 am
is your file name you are writing to dynamic? Did you modify your flat file destination to have an expression that points to what the dynamic file name should be? Lowell
--help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!
January 23, 2017 at 2:28 pm
you said I opened a new query window and ran this:
select convert(nvarchar(64),context_info())
the context_info is session specific, similar to a temp table.
so if i call a...
Lowell
January 23, 2017 at 1:37 pm
duplicate post.
no need to cross post to multiple forums it fractures the answers you get and makes posters duplicate others work.
the "Latest Posts" link shows us everything.
continue...
Lowell
January 23, 2017 at 8:21 am
the classic way would be to use GROUP BY HAVING count > 1
SELECT
Col1,Col2,Col3,Col10Or12
FROM
YourTable
GROUP BY Col1,Col2,Col3C,Col10Or12
HAVING COUNT(*) >...
Lowell
January 20, 2017 at 1:04 pm
if you can modify the stored procedure, you could populate the VARBINARY(128) CONTEXT_INFO property.
that value is session based, i believe, so if the application calls a proc, and...
Lowell
January 20, 2017 at 7:56 am
how to monitor DBmail, I mean in terms of audit if the...
Lowell
January 19, 2017 at 2:43 pm
Viewing 15 posts - 661 through 675 (of 13,460 total)