Viewing 15 posts - 2,266 through 2,280 (of 2,567 total)
In order for us to even try and help you further and to see what other problems you have (as I do not believe that the sample data and table...
June 11, 2018 at 11:02 am
syntax is "delete from table where key = (desired key to delete)"
So what have you tried so far and why has it failed e.g. expected results and the...
June 10, 2018 at 3:40 pm
And why you think it wont work? or is it that the locations is more than those you mentioned?
And in any case why do you need it on...
June 8, 2018 at 1:32 pm
SQL then
declare @Table table
( id int
, location varchar(50)
)
insert into @Table select 1 , 'west'
insert into @Table select...
June 8, 2018 at 12:39 pm
sorry - misread and though you after some SQL - on SSRS I don't know
June 8, 2018 at 12:12 pm
Eric, did you run SSMS as administrator ON the server itself? or on your workstation?
June 8, 2018 at 4:08 am
Can you also tell us how many rows each table has.
From what you said before I would think GL_Transline is the big table, but GL_Source I would be inclined...
June 7, 2018 at 2:24 pm
I notice that your scripts are missing both compression and filegroup information - just to confirm could you please run the following script and supply us with the output.
And...
June 6, 2018 at 5:56 pm
message is quite clear - access denied
the user SQL Server instance is running under needs access to the...
June 6, 2018 at 5:05 pm
I've seen that happen when there is a tiniest time difference on the clock vs domain server. Setting up a dependency on the time service can solve the issue if...
June 5, 2018 at 7:03 pm
yeah.. with a totally different error
Send-MailMessage : The SMTP server requires a secure connection or the client was not authenticated. The server
response was: 5.7.0 Must issue a...
June 5, 2018 at 12:14 am
That falls under the category of standards (company) and where none exist personal preference.
On my case standards (and personal preference) are
- tables always aliased
- select, from...
June 4, 2018 at 4:33 pm
is this what you expect?
if object_id('dbo.ranks') is not null
drop table dbo.ranks;
create table dbo.ranks
( name nvarchar(50) null
)
on...
June 4, 2018 at 4:13 pm
Apologies for my previous post - Missed the fact that the plans were attached.
Agree with Grant - some implicit conversions around suser_name (all but one) but nothing jumping...
June 4, 2018 at 1:44 pm
ahhhhhh... all queries are based on which user runs it.
uzsakymai.dbo.L0_BP where L0_vart = suser_name()
the above style is all over the place - so...
June 4, 2018 at 12:14 pm
Viewing 15 posts - 2,266 through 2,280 (of 2,567 total)