Viewing 15 posts - 556 through 570 (of 2,857 total)
Your syntax is wrong for SQL Server. You can't use SELECT in a CREATE TABLE statement. I recommend you review the documentation from Microsoft on CREATE TABLE syntax (https://docs.microsoft.com/en-us/sql/t-sql/statements/create-table-transact-sql?view=sql-server-ver15) and...
April 5, 2022 at 2:13 pm
Without seeing your data or table structures, my best guess is one of the following:
1 - your data is unordered - that is you are not putting in an "ORDER...
March 24, 2022 at 10:05 pm
The error message is telling you EXACTLY what is wrong - the path was not found.
Looking at your code, there are a few things that I am a little confused...
March 23, 2022 at 2:15 pm
Personally, I think that sounds like a lot to work on, but I am hoping that you do get some interest in it. One concern an end user may have...
March 22, 2022 at 4:38 pm
Personally, I wouldn't put the GPX file on there. I have never looked at those, but I have a feeling that it contains GPS data in there. People could use...
March 21, 2022 at 9:52 pm
I agree with TangoVictor on this one - I would be looking to have the business sanitize the data before allowing it to be handled by SSIS. one user puts...
March 21, 2022 at 9:28 pm
What I would strongly recommend to get good results on this forum is:
1 - post DDL in a consumable format such as:
CREATE TABLE sample (JSONData NVARCHAR(MAX))
2 -...
March 21, 2022 at 9:18 pm
I agree with Homebrew01 here - I would do this in a table. That way the logic is EASY to update in the event your fiscal year changes. You MAY...
March 21, 2022 at 9:11 pm
To add to what Jeff said - I got my DBA (Jr. DBA at the time) job with no degree or any certs. I got some certs after getting the...
March 21, 2022 at 5:48 pm
My approach was to get certified in the tool I was going to be supporting - Microsoft SQL Server. I started my training at Ucertify which I liked as it...
March 21, 2022 at 4:05 pm
I am 99% sure that that is a limitation of HTML. Can you imagine the headache if you clicked on a single link and 100 web pages popped open you? ...
March 17, 2022 at 5:32 pm
My opinion - this should be solved at the presentation layer, but you also have some data issues. First, I'd fix the data issues - your RCLTIM column is a...
March 17, 2022 at 5:29 pm
If the code is running longer due to waits, I would review which wait is causing the slowest performance of the query and go from there. If it is something...
March 15, 2022 at 3:43 pm
I agree with Grant here - what are you trying to debug with the debugger?
In general, my "debugging" of SQL scripts is to take the UPDATE, INSERT, or DELETE statements...
March 15, 2022 at 3:40 pm
I was just reviewing the link you provided and it basically tells you what to do, just not in plain terms. Basically, determine what is causing the latch, then determine...
March 14, 2022 at 9:36 pm
Viewing 15 posts - 556 through 570 (of 2,857 total)